Microsoft Azure Connection¶
The Microsoft Azure connection type enables the Azure Integrations.
Authenticating to Azure¶
There are three ways to connect to Azure using Airflow.
Use token credentials i.e. add specific credentials (client_id, secret, tenant) and subscription id to the Airflow connection.
Use a JSON file i.e. create a key file on disk and link to it in the Airflow connection.
Use a JSON dictionary i.e. add a key config directly into the Airflow connection.
Only one authorization method can be used at a time. If you need to manage multiple credentials or keys then you should configure multiple connections.
Default Connection IDs¶
All hooks and operators related to Microsoft Azure Container Instances use azure_default
by default.
Configuring the Connection¶
- Login (optional)
Specify the
client_id
used for the initial connection. This is only needed for token credentials authentication mechanism.- Password (optional)
Specify the
secret
used for the initial connection. This is only needed for token credentials authentication mechanism.- Extra (optional)
Specify the extra parameters (as json dictionary) that can be used in Azure connection. The following parameters are all optional:
tenantId
: Specify the tenant to use. This is only needed for token credentials authentication mechanism.subscriptionId
: Specify the subscription id to use. This is only needed for token credentials authentication mechanism.key_path
: If set, it uses the JSON file authentication mechanism. It specifies the path to the json file that contains the authentication information.key_json
: If set, it uses the JSON dictionary authentication mechanism. It specifies the json that contains the authentication information.
When specifying the connection in environment variable you should specify it using URI syntax.
Note that all components of the URI should be URL-encoded.
For example:
export AIRFLOW_CONN_AZURE_DEFAULT='azure://?key_path=%2Fkeys%2Fkey.json'