From 16f8844e40bba535e745927a323693509abca2f4 Mon Sep 17 00:00:00 2001 From: Tomas Date: Thu, 22 Feb 2024 10:21:34 +0200 Subject: [PATCH] set no_log to true for password word containing keys --- plugins/modules/mysql_user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index 4e13926..e02b153 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -444,8 +444,8 @@ def main(): force_context=dict(type='bool', default=False), session_vars=dict(type='dict'), column_case_sensitive=dict(type='bool', default=None), # TODO 4.0.0 add default=True - password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval']), - password_expire_interval=dict(type='int', required_if=[('password_expire', 'interval', True)]), + password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval'], no_log=True), + password_expire_interval=dict(type='int', required_if=[('password_expire', 'interval', True)], no_log=True), ) module = AnsibleModule( argument_spec=argument_spec,