import * as pulumi from "@pulumi/pulumi"; /** * Data source for looking up an Azure key vault connector. * * References: * - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview * - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault) * - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAzureKeyVaultConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAzureKeyVaultConnector(args: GetAzureKeyVaultConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzureKeyVaultConnector. */ export interface GetAzureKeyVaultConnectorArgs { /** * 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 getAzureKeyVaultConnector. */ export interface GetAzureKeyVaultConnectorResult { /** * Azure environment type. Possible values: AZURE or AZURE*US*GOVERNMENT. Default value: AZURE */ readonly azureEnvironmentType: string; /** * Azure Managed Identity type. Possible values: SystemAssignedManagedIdentity or UserAssignedManagedIdentity. */ readonly azureManagedIdentityType: string; /** * Application ID of the Azure App. */ readonly clientId: string; /** * Connect using only the delegates which have these tags. */ readonly delegateSelectors: string[]; /** * Description of the resource. */ readonly description: string; /** * Boolean value to indicate if purge is enabled. */ readonly enablePurge: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Specifies whether or not is the default value. */ readonly isDefault: boolean; /** * Client Id of the ManagedIdentity resource. */ readonly managedClientId: 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 Harness text secret with the Azure authentication key as its value. */ readonly secretKey: string; /** * Azure subscription ID. */ readonly subscription: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * The Azure Active Directory (AAD) directory ID where you created your application. */ readonly tenantId: string; /** * Boolean value to indicate if managed identity is used to authenticate to Azure Key Vault. */ readonly useManagedIdentity: boolean; /** * Name of the vault. */ readonly vaultName: string; } /** * Data source for looking up an Azure key vault connector. * * References: * - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview * - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault) * - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getAzureKeyVaultConnector({ * identifier: "identifier", * }); * ``` */ export declare function getAzureKeyVaultConnectorOutput(args: GetAzureKeyVaultConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAzureKeyVaultConnector. */ export interface GetAzureKeyVaultConnectorOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; } //# sourceMappingURL=getAzureKeyVaultConnector.d.ts.map