From 301d561420cd80b749db4973ff9a057ea829c9f2 Mon Sep 17 00:00:00 2001 From: ubruns Date: Fri, 5 Apr 2019 18:43:28 +0200 Subject: [PATCH] Update guide_azure.rst (#54401) * Update guide_azure.rst Added a note to the 'Storing in a file' section, that the secret value of the ini file should be UrlEncoded. Otherwise the user might get login errors (depends on the characters used in the secret). --- docs/docsite/rst/scenario_guides/guide_azure.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docsite/rst/scenario_guides/guide_azure.rst b/docs/docsite/rst/scenario_guides/guide_azure.rst index ce22bb4ed7f..cbfd4ceb8d9 100644 --- a/docs/docsite/rst/scenario_guides/guide_azure.rst +++ b/docs/docsite/rst/scenario_guides/guide_azure.rst @@ -109,6 +109,8 @@ for credentials in ``$HOME/.azure/credentials``. This file is an ini style file. secret=xxxxxxxxxxxxxxxxx tenant=xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx +.. note:: If your secret values contain non-ASCII characters, you must `URL Encode `_ them to avoid login errors. + It is possible to store multiple sets of credentials within the credentials file by creating multiple sections. Each section is considered a profile. The modules look for the [default] profile automatically. Define AZURE_PROFILE in the environment or pass a profile parameter to specify a specific profile.