UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

28 lines 1.15 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.getGitopsRepoCertOutput = exports.getGitopsRepoCert = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for retrieving a GitOps RepoCert. */ function getGitopsRepoCert(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getGitopsRepoCert:getGitopsRepoCert", { "accountId": args.accountId, "agentId": args.agentId, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getGitopsRepoCert = getGitopsRepoCert; /** * Data source for retrieving a GitOps RepoCert. */ function getGitopsRepoCertOutput(args, opts) { return pulumi.output(args).apply((a) => getGitopsRepoCert(a, opts)); } exports.getGitopsRepoCertOutput = getGitopsRepoCertOutput; //# sourceMappingURL=getGitopsRepoCert.js.map