Skip to content

Commit

Permalink
Don't log password arguments of keystone module
Browse files Browse the repository at this point in the history
Set no_log=True for the 'login_password' and 'password' arguments of the
keystone module so that they will not be printed in plain text within
Ansible run output.

Change-Id: I07748e9ff1c1459f0eacf1409bef4e158c9e6446
  • Loading branch information
jimmymccrory committed Apr 5, 2017
1 parent 3d2e23b commit 5e1828c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions library/keystone
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,8 @@ def main():
required=False
),
login_password=dict(
required=False
required=False,
no_log=True
),
login_tenant_name=dict(
required=False
Expand All @@ -1317,7 +1318,8 @@ def main():
required=False
),
password=dict(
required=False
required=False,
no_log=True
),
endpoint=dict(
required=True,
Expand Down

0 comments on commit 5e1828c

Please sign in to comment.