UNPKG

@pierskarsenbarg/sdm

Version:

A Pulumi package for creating and managing StrongDM cloud resources.

38 lines 1.51 kB
"use strict"; // *** 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.getSecretStoreOutput = exports.getSecretStore = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * A SecretStore is a server where resource secrets (passwords, keys) are stored. * Coming soon support for HashiCorp Vault and AWS Secret Store. */ function getSecretStore(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("sdm:index/getSecretStore:getSecretStore", { "id": args.id, "name": args.name, "tags": args.tags, "type": args.type, }, opts); } exports.getSecretStore = getSecretStore; /** * A SecretStore is a server where resource secrets (passwords, keys) are stored. * Coming soon support for HashiCorp Vault and AWS Secret Store. */ function getSecretStoreOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("sdm:index/getSecretStore:getSecretStore", { "id": args.id, "name": args.name, "tags": args.tags, "type": args.type, }, opts); } exports.getSecretStoreOutput = getSecretStoreOutput; //# sourceMappingURL=getSecretStore.js.map