summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-10-13 22:31:08 +0200
committerAdrian Likins <alikins@redhat.com>2016-10-13 16:31:08 -0400
commit8853f6b6a41c420332189e329fdcd36eccda8950 (patch)
tree1e4b7e97cc7e11078191beda12aff2ddeff2937b
parent9718a58be4773e3efa4e3b5fef2b7bca35c1acc9 (diff)
downloadansible-modules-core-8853f6b6a41c420332189e329fdcd36eccda8950.tar.gz
Do not leak the password in log (#5203)
-rw-r--r--cloud/azure/azure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/azure/azure.py b/cloud/azure/azure.py
index e5d6fc58..38e9c2fc 100644
--- a/cloud/azure/azure.py
+++ b/cloud/azure/azure.py
@@ -535,7 +535,7 @@ def main():
management_cert_path=dict(),
endpoints=dict(default='22'),
user=dict(),
- password=dict(),
+ password=dict(no_log=True),
image=dict(),
virtual_network_name=dict(default=None),
state=dict(default='present'),