@pulumi/vault
Version:
A Pulumi package for creating and managing HashiCorp Vault cloud resources.
27 lines • 1.28 kB
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 = exports.AuthBackend = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.AuthBackend = null;
utilities.lazyLoad(exports, ["AuthBackend"], () => require("./authBackend"));
exports.AuthBackendRole = null;
utilities.lazyLoad(exports, ["AuthBackendRole"], () => require("./authBackendRole"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "vault:jwt/authBackend:AuthBackend":
return new exports.AuthBackend(name, undefined, { urn });
case "vault:jwt/authBackendRole:AuthBackendRole":
return new exports.AuthBackendRole(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("vault", "jwt/authBackend", _module);
pulumi.runtime.registerResourceModule("vault", "jwt/authBackendRole", _module);
//# sourceMappingURL=index.js.map