UNPKG

@pulumiverse/dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

32 lines 1.43 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.getAwsCredentialsOutput = exports.getAwsCredentials = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The `dynatrace.AwsCredentials` data source allows the AWS credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the AWS credential */ function getAwsCredentials(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("dynatrace:index/getAwsCredentials:getAwsCredentials", { "label": args.label, }, opts); } exports.getAwsCredentials = getAwsCredentials; /** * The `dynatrace.AwsCredentials` data source allows the AWS credential ID to be retrieved by its label. * * - `label` (String) - The label/name of the AWS credential */ function getAwsCredentialsOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("dynatrace:index/getAwsCredentials:getAwsCredentials", { "label": args.label, }, opts); } exports.getAwsCredentialsOutput = getAwsCredentialsOutput; //# sourceMappingURL=getAwsCredentials.js.map