proxmox: prevent to log passwords

This commit is contained in:
Rene Moser 2015-05-26 13:53:28 +02:00 committed by Matt Clay
parent 7fee01bb0e
commit bdab9a86d5

View file

@ -244,11 +244,11 @@ def main():
argument_spec = dict(
api_host = dict(required=True),
api_user = dict(required=True),
api_password = dict(),
api_password = dict(no_log=True),
vmid = dict(required=True),
https_verify_ssl = dict(type='bool', choices=BOOLEANS, default='no'),
node = dict(),
password = dict(),
password = dict(no_log=True),
hostname = dict(),
ostemplate = dict(),
disk = dict(type='int', default=3),