/** * AuthType describes how to authenticate to the Azure Keyvault * Only one of the following auth types may be specified. * If none of the following auth type is specified, the default one * is ServicePrincipal. */ export type IAzureAuthType = "ServicePrincipal" | "ManagedIdentity" | "WorkloadIdentity"; export type AzureAuthType = IAzureAuthType; export type { IAzureAuthType as IComGithubExternalSecretsExternalSecretsApisExternalsecretsV1AzureAuthType, AzureAuthType as ComGithubExternalSecretsExternalSecretsApisExternalsecretsV1AzureAuthType };