Skip to content

Commit

Permalink
surpress no_log warning (#86)
Browse files Browse the repository at this point in the history
* surpress warning

* add changelog fragment
  • Loading branch information
markuman authored Jan 4, 2022
1 parent 91a1f9c commit 134e762
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelogs/fragments/86-missing-no-log.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
minor_changes:
- proxysql_mysql_users - Add missing ``no_log`` option to ``encrypt_password`` parameter (https://github.com/ansible-collections/community.proxysql/pull/86).
2 changes: 1 addition & 1 deletion plugins/modules/proxysql_mysql_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def main():
argument_spec.update(
username=dict(required=True, type='str'),
password=dict(no_log=True, type='str'),
encrypt_password=dict(default=False, type='bool'),
encrypt_password=dict(default=False, type='bool', no_log=False),
encryption_method=dict(default='mysql_native_password', choices=list(encryption_method_map.keys())),
active=dict(type='bool'),
use_ssl=dict(type='bool'),
Expand Down

0 comments on commit 134e762

Please sign in to comment.