UNPKG

@pulumi/azuread

Version:

A Pulumi package for creating and managing Azure Active Directory (Azure AD) cloud resources.

93 lines (92 loc) 3.67 kB
/** * The Azure DevOps Pipeline Service Connection ID. */ export declare const adoPipelineServiceConnectionId: 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 to decrypt 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 for service principal authentication */ export declare const clientId: string | undefined; /** * The path to a file containing the Client ID which should be used for service principal authentication */ export declare const clientIdFilePath: string | undefined; /** * The application password to use when authenticating as a Service Principal using a Client Secret */ export declare const clientSecret: string | undefined; /** * The path to a file containing the application password to use when authenticating as a Service Principal using a Client * Secret */ export declare const clientSecretFilePath: string | undefined; export declare const disableTerraformPartnerId: boolean | undefined; /** * The cloud environment which should be used. Possible values are: `global` (also `public`), `usgovernmentl4` (also * `usgovernment`), `usgovernmentl5` (also `dod`), and `china`. Defaults to `global`. Not used and should not be specified * when `metadataHost` is specified. */ export declare const environment: string; /** * The Hostname which should be used for the Azure Metadata Service. */ export declare const metadataHost: string | undefined; /** * The path to a custom endpoint for Managed 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 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 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 Tenant ID which should be used. Works with all authentication methods except Managed Identity */ 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 Identity to be used for Authentication */ export declare const useMsi: boolean; /** * Allow OpenID Connect to be used for authentication */ export declare const useOidc: boolean | undefined;