Skip to content

Commit 134e762

Browse files
authored
surpress no_log warning (#86)
* surpress warning * add changelog fragment
1 parent 91a1f9c commit 134e762

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
minor_changes:
3+
- proxysql_mysql_users - Add missing ``no_log`` option to ``encrypt_password`` parameter (https://github.com/ansible-collections/community.proxysql/pull/86).

plugins/modules/proxysql_mysql_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def main():
408408
argument_spec.update(
409409
username=dict(required=True, type='str'),
410410
password=dict(no_log=True, type='str'),
411-
encrypt_password=dict(default=False, type='bool'),
411+
encrypt_password=dict(default=False, type='bool', no_log=False),
412412
encryption_method=dict(default='mysql_native_password', choices=list(encryption_method_map.keys())),
413413
active=dict(type='bool'),
414414
use_ssl=dict(type='bool'),

0 commit comments

Comments
 (0)