UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

28 lines 1.11 kB
"use strict"; // *** 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.getSshCredentialOutput = exports.getSshCredential = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Data source for retrieving an SSH credential. */ function getSshCredential(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:index/getSshCredential:getSshCredential", { "id": args.id, "name": args.name, "usageScopes": args.usageScopes, }, opts); } exports.getSshCredential = getSshCredential; /** * Data source for retrieving an SSH credential. */ function getSshCredentialOutput(args, opts) { return pulumi.output(args).apply((a) => getSshCredential(a, opts)); } exports.getSshCredentialOutput = getSshCredentialOutput; //# sourceMappingURL=getSshCredential.js.map