no log passwords (#21229)

* no log passwords

* removed unneeded no_log
This commit is contained in:
Brian Coca 2017-02-10 15:13:59 -05:00 committed by GitHub
parent 2f6966965e
commit 74e8aa22af
30 changed files with 36 additions and 43 deletions

View file

@ -1485,7 +1485,7 @@ def main():
argument_spec = dict(
state = dict(default='present', choices=['ping', 'present', 'absent', 'up', 'down', 'restarted', 'cd', 'info']),
user = dict(default="admin@internal"),
password = dict(required=True),
password = dict(required=True, no_log=True),
server = dict(default="127.0.0.1"),
port = dict(default="443"),
insecure_api = dict(default=False, type='bool'),