diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index 5c86425..033b7bb 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -990,13 +990,13 @@ def get_password_expiration_policy(cursor, user, host, maria_role=False): policy (int): Current users password policy. """ if not maria_role: - statment = "SELECT IFNULL(password_lifetime, -1) FROM mysql.user \ + statement = "SELECT IFNULL(password_lifetime, -1) FROM mysql.user \ WHERE User = %s AND Host = %s", (user, host) else: - statment = "SELECT JSON_EXTRACT(Priv, '$.password_lifetime') AS password_lifetime \ + statement = "SELECT JSON_EXTRACT(Priv, '$.password_lifetime') AS password_lifetime \ FROM mysql.global_priv \ WHERE User = %s AND Host = %s", (user, host) - cursor.execute(*statment) + cursor.execute(*statement) policy = cursor.fetchone()[0] return int(policy) @@ -1012,9 +1012,9 @@ def is_password_expired(cursor, user, host): Returns: expired (bool): True if expired, else False. """ - statment = "SELECT password_expired FROM mysql.user \ + statement = "SELECT password_expired FROM mysql.user \ WHERE User = %s AND Host = %s", (user, host) - cursor.execute(*statment) + cursor.execute(*statement) expired = cursor.fetchone()[0] if str(expired) == "Y": return True diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index 6bf77c2..130e1b3 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -429,8 +429,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'], no_log=True), - password_expire_interval=dict(type='int', no_log=True), + password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval']), + password_expire_interval=dict(type='int'), ) module = AnsibleModule( argument_spec=argument_spec,