Merge pull request #6322 from AlanCoding/user_no_log

Mark user password as no_log to silence warning

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-03-18 01:58:27 +00:00 committed by GitHub
commit 6b51b41897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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'),
)