azure.azcollection.azure_service_principal_attribute lookup – Look up Azure service principal attributes.
Note
This lookup plugin is part of the azure.azcollection collection (version 3.13.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install azure.azcollection.
You need further requirements to be able to use this lookup plugin,
see Requirements for details.
To use it in a playbook, specify: azure.azcollection.azure_service_principal_attribute.
New in azure.azcollection 1.12.0
Synopsis
Describes object id of your Azure service principal account.
Requirements
The below requirements are needed on the local controller node that executes this lookup.
All python packages listed in collection’s requirements.txt must be installed via pip on the host that executes modules from azure.azcollection
Full installation instructions may be found https://galaxy.ansible.com/azure/azcollection
The host that executes this module must have the azure.azcollection collection installed via galaxy
msgraph-sdk
python >= 2.7
Keyword parameters
This describes keyword parameters of the lookup. These are the values key1=value1, key2=value2 and so on in the following
examples: lookup('azure.azcollection.azure_service_principal_attribute', key1=value1, key2=value2, ...) and query('azure.azcollection.azure_service_principal_attribute', key1=value1, key2=value2, ...)
Parameter |
Comments |
|---|---|
Controls the source of the credentials to use for authentication. Can also be set via the When set to When set to When set to When set to The Choices:
Configuration:
|
|
Azure client ID. Use when authenticating with a Service Principal or Managed Identity (msi). Can also be set via the Configuration:
|
|
For cloud environments other than the US public cloud, the environment name (as defined by Azure Python SDK, eg, Default: Configuration:
|
|
Azure client secret. Use when authenticating with a Service Principal. Configuration:
|
|
Azure tenant ID. Use when authenticating with a Service Principal. Configuration:
|
Notes
Note
If MSI is not enabled on ansible host, it’s required to provide a valid service principal which has access to the key vault.
To authenticate via service principal, pass client_id, secret and tenant or set environment variables AZURE_CLIENT_ID, AZURE_CLIENT_SECRET and AZURE_TENANT_ID.
Authentication via
az loginis also supported.For authentication with Azure you can pass parameters, set environment variables, use a profile stored in ~/.azure/credentials, or log in before you run your tasks or playbook with
az login.Authentication is also possible using a service principal.
To authenticate via service principal, pass subscription_id, client_id, secret and tenant or set environment variables AZURE_SUBSCRIPTION_ID, AZURE_CLIENT_ID, AZURE_SECRET and AZURE_TENANT.
Alternatively, credentials can be stored in ~/.azure/credentials. This is an ini file containing a [default] section and the following keys: subscription_id, client_id, secret and tenant.
See Also
See also
- Sign in with Azure CLI
How to authenticate using the
az logincommand.
Examples
set_fact:
object_id: "{{ lookup('azure_service_principal_attribute',
client_id=azure_client_id,
secret=azure_secret,
tenant=azure_secret) }}"
Return Value
Key |
Description |
|---|---|
Returns object id of service principal. Returned: success |