@pulumiverse/grafana
Version:
A Pulumi package for creating and managing grafana.
32 lines • 1.82 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.SecretSecureValue = exports.SecretKeeperActivation = exports.SecretKeeper = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../../utilities");
exports.SecretKeeper = null;
utilities.lazyLoad(exports, ["SecretKeeper"], () => require("./secretKeeper"));
exports.SecretKeeperActivation = null;
utilities.lazyLoad(exports, ["SecretKeeperActivation"], () => require("./secretKeeperActivation"));
exports.SecretSecureValue = null;
utilities.lazyLoad(exports, ["SecretSecureValue"], () => require("./secretSecureValue"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "grafana:enterprise/v1beta1/secretKeeper:SecretKeeper":
return new exports.SecretKeeper(name, undefined, { urn });
case "grafana:enterprise/v1beta1/secretKeeperActivation:SecretKeeperActivation":
return new exports.SecretKeeperActivation(name, undefined, { urn });
case "grafana:enterprise/v1beta1/secretSecureValue:SecretSecureValue":
return new exports.SecretSecureValue(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("grafana", "enterprise/v1beta1/secretKeeper", _module);
pulumi.runtime.registerResourceModule("grafana", "enterprise/v1beta1/secretKeeperActivation", _module);
pulumi.runtime.registerResourceModule("grafana", "enterprise/v1beta1/secretSecureValue", _module);
//# sourceMappingURL=index.js.map