@pulumi/vault
Version:
A Pulumi package for creating and managing HashiCorp Vault cloud resources.
22 lines • 956 B
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthBackendRole = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.AuthBackendRole = null;
utilities.lazyLoad(exports, ["AuthBackendRole"], () => require("./authBackendRole"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "vault:tokenauth/authBackendRole:AuthBackendRole":
return new exports.AuthBackendRole(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("vault", "tokenauth/authBackendRole", _module);
//# sourceMappingURL=index.js.map