@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
28 lines • 1.12 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.getEncryptedTextOutput = exports.getEncryptedText = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Data source for retrieving a Harness application
*/
function getEncryptedText(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("harness:index/getEncryptedText:getEncryptedText", {
"id": args.id,
"name": args.name,
"usageScopes": args.usageScopes,
}, opts);
}
exports.getEncryptedText = getEncryptedText;
/**
* Data source for retrieving a Harness application
*/
function getEncryptedTextOutput(args, opts) {
return pulumi.output(args).apply((a) => getEncryptedText(a, opts));
}
exports.getEncryptedTextOutput = getEncryptedTextOutput;
//# sourceMappingURL=getEncryptedText.js.map