@pulumi/vault
Version:
A Pulumi package for creating and managing HashiCorp Vault cloud resources.
35 lines • 1.87 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.SecretRole = exports.SecretLibrary = exports.SecretBackend = exports.getAccessCredentialsOutput = exports.getAccessCredentials = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.getAccessCredentials = null;
exports.getAccessCredentialsOutput = null;
utilities.lazyLoad(exports, ["getAccessCredentials", "getAccessCredentialsOutput"], () => require("./getAccessCredentials"));
exports.SecretBackend = null;
utilities.lazyLoad(exports, ["SecretBackend"], () => require("./secretBackend"));
exports.SecretLibrary = null;
utilities.lazyLoad(exports, ["SecretLibrary"], () => require("./secretLibrary"));
exports.SecretRole = null;
utilities.lazyLoad(exports, ["SecretRole"], () => require("./secretRole"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "vault:ad/secretBackend:SecretBackend":
return new exports.SecretBackend(name, undefined, { urn });
case "vault:ad/secretLibrary:SecretLibrary":
return new exports.SecretLibrary(name, undefined, { urn });
case "vault:ad/secretRole:SecretRole":
return new exports.SecretRole(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("vault", "ad/secretBackend", _module);
pulumi.runtime.registerResourceModule("vault", "ad/secretLibrary", _module);
pulumi.runtime.registerResourceModule("vault", "ad/secretRole", _module);
//# sourceMappingURL=index.js.map