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-17 16:13:10 -0400
commitb1149d8c10dbc58f12e4ccc7c0f076fe89054a04 (patch)
tree3d6253ce780fd064262938b3bc822374a9a06548
parent1507fb83fd8db81a1c5d5a75950d76d32226f6b4 (diff)
downloadansible-modules-core-b1149d8c10dbc58f12e4ccc7c0f076fe89054a04.tar.gz
Do not leak the password in log (#5203)
(cherry picked from commit 8853f6b6a41c420332189e329fdcd36eccda8950)
-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'),