From f28a0ca4bb4ec68249be78840f1b70de48216e60 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Mon, 18 Apr 2016 11:05:30 -0400 Subject: [PATCH] Update Azure doc fragment (#15450) * Add default attribute to all option doc strings. * Fix fragment file name. --- lib/ansible/utils/module_docs_fragments/azure.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/ansible/utils/module_docs_fragments/azure.py b/lib/ansible/utils/module_docs_fragments/azure.py index 5dc9bd97cab..1954629e146 100644 --- a/lib/ansible/utils/module_docs_fragments/azure.py +++ b/lib/ansible/utils/module_docs_fragments/azure.py @@ -31,31 +31,38 @@ options: - Active Directory username. Use when authenticating with an Active Directory user rather than service principal. required: false + default: null password: description: - Active Directory user password. Use when authenticating with an Active Directory user rather than service principal. required: false + default: null profile: description: - Security profile found in ~/.azure/credentials file. required: false + default: null subscription_id: description: - Your Azure subscription Id. required: false + default: null client_id: description: - Azure client ID. Use when authenticating with a Service Principal. required: false + default: null secret: description: - Azure client secret. Use when authenticating with a Service Principal. required: false + default: null tenant: description: - Azure tenant ID. Use when authenticating with a Service Principal. required: false + default: null requirements: - "python >= 2.7"