@spacelift-io/pulumi-spacelift
Version:
A Pulumi package for creating and managing Spacelift resources.
27 lines • 1.41 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.getAwsIntegrationAttachmentOutput = exports.getAwsIntegrationAttachment = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* `spacelift.AwsIntegrationAttachment` represents the attachment between a reusable AWS integration and a single stack or module.
*/
function getAwsIntegrationAttachment(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("spacelift:index/getAwsIntegrationAttachment:getAwsIntegrationAttachment", {
"integrationId": args.integrationId,
"moduleId": args.moduleId,
"stackId": args.stackId,
}, opts);
}
exports.getAwsIntegrationAttachment = getAwsIntegrationAttachment;
/**
* `spacelift.AwsIntegrationAttachment` represents the attachment between a reusable AWS integration and a single stack or module.
*/
function getAwsIntegrationAttachmentOutput(args, opts) {
return pulumi.output(args).apply((a) => getAwsIntegrationAttachment(a, opts));
}
exports.getAwsIntegrationAttachmentOutput = getAwsIntegrationAttachmentOutput;
//# sourceMappingURL=getAwsIntegrationAttachment.js.map