import * as outputs from "../types/output"; /** * The Azure DevOps Pipeline Service Connection ID. */ export declare const adoPipelineServiceConnectionId: string | undefined; export declare const auxiliaryTenantIds: string[] | undefined; /** * Base64 encoded PKCS#12 certificate bundle to use when authenticating as a Service Principal using a Client Certificate */ export declare const clientCertificate: string | undefined; /** * The password associated with the Client Certificate. For use when authenticating as a Service Principal using a Client Certificate */ export declare const clientCertificatePassword: string | undefined; /** * The path to the Client Certificate associated with the Service Principal for use when authenticating as a Service Principal using a Client Certificate. */ export declare const clientCertificatePath: string | undefined; /** * The Client ID which should be used. */ export declare const clientId: string | undefined; /** * The path to a file containing the Client ID which should be used. */ export declare const clientIdFilePath: string | undefined; /** * The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret. */ export declare const clientSecret: string | undefined; /** * The path to a file containing the Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret. */ export declare const clientSecretFilePath: string | undefined; /** * This will disable the x-ms-correlation-request-id header. */ export declare const disableCorrelationRequestId: boolean | undefined; /** * This will disable the Terraform Partner ID which is used if a custom `partnerId` isn't specified. */ export declare const disableTerraformPartnerId: boolean | undefined; export declare const enhancedValidation: outputs.config.EnhancedValidation | undefined; /** * The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used and should not be specified when `metadataHost` is specified. */ export declare const environment: string; export declare const features: outputs.config.Features | undefined; export declare const location: string | undefined; /** * The Hostname which should be used for the Azure Metadata Service. */ export declare const metadataHost: string | undefined; /** * The API version to use for Managed Service Identity (IMDS) - for cases where the default API version is not supported by the endpoint. e.g. for Azure Container Apps. */ export declare const msiApiVersion: string | undefined; /** * The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically. */ export declare const msiEndpoint: string | undefined; /** * The bearer token for the request to the OIDC provider. For use when authenticating as a Service Principal using OpenID Connect. */ export declare const oidcRequestToken: string | undefined; /** * The URL for the OIDC provider from which to request an ID token. For use when authenticating as a Service Principal using OpenID Connect. */ export declare const oidcRequestUrl: string | undefined; /** * The OIDC ID token for use when authenticating as a Service Principal using OpenID Connect. */ export declare const oidcToken: string | undefined; /** * The path to a file containing an OIDC ID token for use when authenticating as a Service Principal using OpenID Connect. */ export declare const oidcTokenFilePath: string | undefined; /** * A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution. */ export declare const partnerId: string | undefined; /** * The set of Resource Providers which should be automatically registered for the subscription. */ export declare const resourceProviderRegistrations: string | undefined; /** * A list of Resource Providers to explicitly register for the subscription, in addition to those specified by the `resourceProviderRegistrations` property. */ export declare const resourceProvidersToRegisters: string[] | undefined; /** * Should the AzureRM Provider skip registering all of the Resource Providers that it supports, if they're not already registered? */ export declare const skipProviderRegistration: boolean; /** * Should the AzureRM Provider use Azure AD Authentication when accessing the Storage Data Plane APIs? */ export declare const storageUseAzuread: boolean; /** * The Subscription ID which should be used. */ export declare const subscriptionId: string; /** * The Tenant ID which should be used. */ export declare const tenantId: string | undefined; /** * Allow Azure AKS Workload Identity to be used for Authentication. */ export declare const useAksWorkloadIdentity: boolean | undefined; /** * Allow Azure CLI to be used for Authentication. */ export declare const useCli: boolean | undefined; /** * Allow Managed Service Identity to be used for Authentication. */ export declare const useMsi: boolean | undefined; /** * Allow OpenID Connect to be used for authentication */ export declare const useOidc: boolean | undefined;