1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix false positive for MySQL user module (#18)

This stops a false positive warnings that the `update_password` param
doesn't have the `no_log` set.
This commit is contained in:
Thomas O'Donnell 2020-03-17 15:23:03 +01:00 committed by GitHub
parent 5dbdf14908
commit fdc09fa3fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -694,7 +694,7 @@ def main():
priv=dict(type='raw'),
append_privs=dict(type='bool', default=False),
check_implicit_admin=dict(type='bool', default=False),
update_password=dict(type='str', default='always', choices=['always', 'on_create']),
update_password=dict(type='str', default='always', choices=['always', 'on_create'], no_log=False),
connect_timeout=dict(type='int', default=30),
config_file=dict(type='path', default='~/.my.cnf'),
sql_log_bin=dict(type='bool', default=True),