UNPKG

@pulumi/vault

Version:

A Pulumi package for creating and managing HashiCorp Vault cloud resources.

26 lines 1.24 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.getDynamicCredentialsOutput = exports.getDynamicCredentials = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); function getDynamicCredentials(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("vault:ldap/getDynamicCredentials:getDynamicCredentials", { "mount": args.mount, "namespace": args.namespace, "roleName": args.roleName, }, opts); } exports.getDynamicCredentials = getDynamicCredentials; function getDynamicCredentialsOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("vault:ldap/getDynamicCredentials:getDynamicCredentials", { "mount": args.mount, "namespace": args.namespace, "roleName": args.roleName, }, opts); } exports.getDynamicCredentialsOutput = getDynamicCredentialsOutput; //# sourceMappingURL=getDynamicCredentials.js.map