@@ -38,12 +38,18 @@ class EnvironmentCredential(object):
3838 - **AZURE_TENANT_ID**: ID of the service principal's tenant. Also called its 'directory' ID.
3939 - **AZURE_CLIENT_ID**: the service principal's client ID
4040 - **AZURE_CLIENT_SECRET**: one of the service principal's client secrets
41+ - **AZURE_AUTHORITY_HOST**: authority of an Azure Active Directory endpoint, for example
42+ "login.microsoftonline.com", the authority for Azure Public Cloud, which is the default
43+ when no value is given.
4144
4245 Service principal with certificate:
4346 - **AZURE_TENANT_ID**: ID of the service principal's tenant. Also called its 'directory' ID.
4447 - **AZURE_CLIENT_ID**: the service principal's client ID
4548 - **AZURE_CLIENT_CERTIFICATE_PATH**: path to a PEM or PKCS12 certificate file including the private key. The
4649 certificate must not be password-protected.
50+ - **AZURE_AUTHORITY_HOST**: authority of an Azure Active Directory endpoint, for example
51+ "login.microsoftonline.com", the authority for Azure Public Cloud, which is the default
52+ when no value is given.
4753
4854 User with username and password:
4955 - **AZURE_CLIENT_ID**: the application's client ID
@@ -52,6 +58,9 @@ class EnvironmentCredential(object):
5258 - **AZURE_TENANT_ID**: (optional) ID of the service principal's tenant. Also called its 'directory' ID.
5359 If not provided, defaults to the 'organizations' tenant, which supports only Azure Active Directory work or
5460 school accounts.
61+ - **AZURE_AUTHORITY_HOST**: authority of an Azure Active Directory endpoint, for example
62+ "login.microsoftonline.com", the authority for Azure Public Cloud, which is the default
63+ when no value is given.
5564 """
5665
5766 def __init__ (self , ** kwargs ):
0 commit comments