@lbrlabs/pulumi-scaleway
Version:
A Pulumi package for creating and managing scaleway cloud resources.
23 lines • 1.05 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSecretVersionOutput = exports.getSecretVersion = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getSecretVersion(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("scaleway:index/getSecretVersion:getSecretVersion", {
"region": args.region,
"revision": args.revision,
"secretId": args.secretId,
"secretName": args.secretName,
}, opts);
}
exports.getSecretVersion = getSecretVersion;
function getSecretVersionOutput(args, opts) {
return pulumi.output(args).apply((a) => getSecretVersion(a, opts));
}
exports.getSecretVersionOutput = getSecretVersionOutput;
//# sourceMappingURL=getSecretVersion.js.map