UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

124 lines (123 loc) 3.23 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Datasource for looking up an AWS Secret Manager connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAwsSecretManagerConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAwsSecretManagerConnector(args: GetAwsSecretManagerConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetAwsSecretManagerConnectorResult>; /** * A collection of arguments for invoking getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorArgs { /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorResult { /** * Credentials to connect to AWS. */ readonly credentials: outputs.platform.GetAwsSecretManagerConnectorCredential[]; /** * Tags to filter delegates for connection. */ readonly delegateSelectors: string[]; /** * Description of the resource. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * The AWS region where the AWS Secret Manager is. */ readonly region: string; /** * A prefix to be added to all secrets. */ readonly secretNamePrefix: string; /** * Tags to associate with the resource. */ readonly tags: string[]; } /** * Datasource for looking up an AWS Secret Manager connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAwsSecretManagerConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAwsSecretManagerConnectorOutput(args: GetAwsSecretManagerConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAwsSecretManagerConnectorResult>; /** * A collection of arguments for invoking getAwsSecretManagerConnector. */ export interface GetAwsSecretManagerConnectorOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input<string>; /** * Name of the resource. */ name?: pulumi.Input<string>; /** * Unique identifier of the organization. */ orgId?: pulumi.Input<string>; /** * Unique identifier of the project. */ projectId?: pulumi.Input<string>; }