Azure Identity client library for Python¶
The Azure Identity library provides a set of credential classes for use with Azure SDK clients which support Azure Active Directory (AAD) token authentication.
Source code | Package (PyPI) | API reference documentation | Azure Active Directory documentation
Getting started¶
Prerequisites¶
Python 2.7 or 3.5.3+
Authenticating during local development¶
When debugging and executing code locally it is typical for developers to use their own accounts for authenticating calls to Azure services. The Azure Identity library supports authenticating through developer tools to simplify local development.
Authenticating via Visual Studio Code¶
DefaultAzureCredential
and VisualStudioCodeCredential
can authenticate as
the user signed in to Visual Studio Code’s
Azure Account extension.
After installing the extension, sign in to Azure in Visual Studio Code by
pressing F1
to open the command palette and running the Azure: Sign In
command.
Authenticating via the Azure CLI¶
DefaultAzureCredential
and AzureCliCredential
can authenticate as the user
signed in to the Azure CLI. To sign in to the Azure CLI, run
az login
. On a system with a default web browser, the Azure CLI will launch
the browser to authenticate a user.
When no default browser is available, az login
will use the device code
authentication flow. This can also be selected manually by running az login --use-device-code
.
Key concepts¶
Credentials¶
A credential is a class which contains or can obtain the data needed for a service client to authenticate requests. Service clients across the Azure SDK accept a credential instance when they are constructed, and use that credential to authenticate requests.
The Azure Identity library focuses on OAuth authentication with Azure Active Directory (AAD). It offers a variety of credential classes capable of acquiring an AAD access token. See Credential Classes below for a list of this library’s credential classes.
DefaultAzureCredential¶
DefaultAzureCredential
is appropriate for most applications which will run in
the Azure Cloud because it combines common production credentials with
development credentials. DefaultAzureCredential
attempts to authenticate via
the following mechanisms in this order, stopping when one succeeds:
Environment -
DefaultAzureCredential
will read account information specified via environment variables and use it to authenticate.Managed Identity - if the application is deployed to an Azure host with Managed Identity enabled,
DefaultAzureCredential
will authenticate with it.Visual Studio Code - if a user has signed in to the Visual Studio Code Azure Account extension,
DefaultAzureCredential
will authenticate as that user.Azure CLI - If a user has signed in via the Azure CLI
az login
command,DefaultAzureCredential
will authenticate as that user.Interactive - If enabled,
DefaultAzureCredential
will interactively authenticate a user via the current system’s default browser.
Examples¶
The following examples are provided below:
Authenticating with DefaultAzureCredential
¶
This example demonstrates authenticating the BlobServiceClient
from the
azure-storage-blob library using
DefaultAzureCredential
.
from azure.identity import DefaultAzureCredential
from azure.storage.blob import BlobServiceClient
default_credential = DefaultAzureCredential()
client = BlobServiceClient(account_url, credential=default_credential)
Enabling interactive authentication with DefaultAzureCredential
¶
Interactive authentication is disabled in the DefaultAzureCredential
by
default and can be enabled with a keyword argument:
DefaultAzureCredential(exclude_interactive_browser_credential=False)
When enabled, DefaultAzureCredential
falls back to interactively
authenticating via the system’s default web browser when no other credential is
available.
Defining a custom authentication flow with ChainedTokenCredential
¶
DefaultAzureCredential
is generally the quickest way to get started developing
applications for Azure. For more advanced scenarios,
ChainedTokenCredential links multiple credential instances
to be tried sequentially when authenticating. It will try each chained
credential in turn until one provides a token or fails to authenticate due to
an error.
The following example demonstrates creating a credential which will attempt to
authenticate using managed identity, and fall back to authenticating via the
Azure CLI when a managed identity is unavailable. This example uses the
EventHubProducerClient
from the azure-eventhub client library.
from azure.eventhub import EventHubProducerClient
from azure.identity import AzureCliCredential, ChainedTokenCredential, ManagedIdentityCredential
managed_identity = ManagedIdentityCredential()
azure_cli = AzureCliCredential()
credential_chain = ChainedTokenCredential(managed_identity, azure_cli)
client = EventHubProducerClient(namespace, eventhub_name, credential_chain)
Async credentials¶
This library includes an async API supported on Python 3.5+. To use the async credentials in azure.identity.aio, you must first install an async transport, such as aiohttp. See azure-core documentation for more information.
Async credentials should be closed when they’re no longer needed. Each async
credential is an async context manager and defines an async close
method. For
example:
from azure.identity.aio import DefaultAzureCredential
# call close when the credential is no longer needed
credential = DefaultAzureCredential()
...
await credential.close()
# alternatively, use the credential as an async context manager
credential = DefaultAzureCredential()
async with credential:
...
This example demonstrates authenticating the asynchronous SecretClient
from
azure-keyvault-secrets with an asynchronous
credential.
from azure.identity.aio import DefaultAzureCredential
from azure.keyvault.secrets.aio import SecretClient
default_credential = DefaultAzureCredential()
client = SecretClient("https://my-vault.vault.azure.net", default_credential)
Credential Classes¶
Authenticating Azure Hosted Applications¶
credential |
usage |
---|---|
simplified authentication to get started developing applications for the Azure cloud |
|
define custom authentication flows composing multiple credentials |
|
authenticate a service principal or user configured by environment variables |
|
authenticate the managed identity of an Azure resource |
Authenticating Service Principals¶
credential |
usage |
---|---|
authenticate a service principal using a secret |
|
authenticate a service principal using a certificate |
Authenticating Users¶
credential |
usage |
---|---|
interactively authenticate a user with the default web browser |
|
interactively authenticate a user on a device with limited UI |
|
authenticate a user with a username and password |
Authenticating via Development Tools¶
credential |
usage |
---|---|
authenticate as the user signed in to the Azure CLI |
|
authenticate as the user signed in to the Visual Studio Code Azure Account extension |
Environment Variables¶
DefaultAzureCredential and EnvironmentCredential can be configured with environment variables. Each type of authentication requires values for specific variables:
variable name |
value |
---|---|
|
id of an Azure Active Directory application |
|
id of the application’s Azure Active Directory tenant |
|
one of the application’s client secrets |
variable name |
value |
---|---|
|
id of an Azure Active Directory application |
|
id of the application’s Azure Active Directory tenant |
|
path to a PEM-encoded certificate file including private key (without password protection) |
variable name |
value |
---|---|
|
id of an Azure Active Directory application |
|
a username (usually an email address) |
|
that user’s password |
Configuration is attempted in the above order. For example, if values for a client secret and certificate are both present, the client secret will be used.
Troubleshooting¶
Error Handling¶
Credentials raise CredentialUnavailableError
when they’re unable to attempt
authentication because they lack required data or state. For example,
EnvironmentCredential will raise this exception when
its configuration is incomplete.
Credentials raise azure.core.exceptions.ClientAuthenticationError
when they fail
to authenticate. ClientAuthenticationError
has a message
attribute which
describes why authentication failed. When raised by
DefaultAzureCredential
or ChainedTokenCredential
,
the message collects error messages from each credential in the chain.
For more details on handling specific Azure Active Directory errors please refer to the Azure Active Directory error code documentation.
Logging¶
This library uses the standard logging library for logging. Credentials log basic information, including HTTP sessions (URLs, headers, etc.) at INFO level. These log entries do not contain authentication secrets.
Detailed DEBUG level logging, including request/response bodies and header values, is not enabled by default. It can be enabled with the logging_enable
argument, for example:
credential = DefaultAzureCredential(logging_enable=True)
CAUTION: DEBUG level logs from credentials contain sensitive information. These logs must be protected to avoid compromising account security.
Next steps¶
Client library support¶
This is an incomplete list of client libraries accepting Azure Identity credentials. You can learn more about these libraries, and find additional documentation of them, at the links below.
Provide Feedback¶
If you encounter bugs or have suggestions, please open an issue.
Contributing¶
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.