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:
parent
5dbdf14908
commit
fdc09fa3fd
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ def main():
|
||||||
priv=dict(type='raw'),
|
priv=dict(type='raw'),
|
||||||
append_privs=dict(type='bool', default=False),
|
append_privs=dict(type='bool', default=False),
|
||||||
check_implicit_admin=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),
|
connect_timeout=dict(type='int', default=30),
|
||||||
config_file=dict(type='path', default='~/.my.cnf'),
|
config_file=dict(type='path', default='~/.my.cnf'),
|
||||||
sql_log_bin=dict(type='bool', default=True),
|
sql_log_bin=dict(type='bool', default=True),
|
||||||
|
|
Loading…
Reference in a new issue