From d1d859f3f03eaea49aea7b882fad1de1b4dd104b Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Thu, 21 Mar 2019 16:20:49 +0000 Subject: [PATCH] Note that `az login` works for Ansible, too. (#52835) * Note that `az login` works for Ansible, too. Co-Authored-By: mavit --- lib/ansible/plugins/doc_fragments/azure.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/ansible/plugins/doc_fragments/azure.py b/lib/ansible/plugins/doc_fragments/azure.py index 545bf8c124e..2aea0a80471 100644 --- a/lib/ansible/plugins/doc_fragments/azure.py +++ b/lib/ansible/plugins/doc_fragments/azure.py @@ -93,9 +93,10 @@ requirements: - azure >= 2.0.0 notes: - - For authentication with Azure you can pass parameters, set environment variables or use a profile stored - in ~/.azure/credentials. Authentication is possible using a service principal or Active Directory user. - To authenticate via service principal, pass subscription_id, client_id, secret and tenant or set environment + - 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 C(az login). + - Authentication is also possible using a service principal or Active Directory user. + - 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. - To authenticate via Active Directory user, pass ad_user and password, or set AZURE_AD_USER and AZURE_PASSWORD in the environment. @@ -103,4 +104,9 @@ notes: a [default] section and the following keys: subscription_id, client_id, secret and tenant or subscription_id, ad_user and password. It is also possible to add additional profiles. Specify the profile by passing profile or setting AZURE_PROFILE in the environment." + +seealso: + - name: Sign in with Azure CLI + link: https://docs.microsoft.com/en-us/cli/azure/authenticate-azure-cli?view=azure-cli-latest + description: How to authenticate using the C(az login) command. '''