Mark user password as no_log to silence warning

This commit is contained in:
AlanCoding 2020-03-17 19:49:27 -04:00
parent e210ee4077
commit ecdb353f6f
No known key found for this signature in database
GPG Key ID: FD2C3C012A72926B

View File

@ -127,7 +127,7 @@ def main():
email=dict(required=False, type='str'),
is_superuser=dict(required=False, type='bool', default=False, aliases=['superuser']),
is_system_auditor=dict(required=False, type='bool', default=False, aliases=['auditor']),
password=dict(required=False, type='str'),
password=dict(required=False, type='str', no_log=True),
state=dict(choices=['present', 'absent'], default='present'),
)