diff --git a/changelogs/fragments/mysql_user_tls_requires.yml b/changelogs/fragments/mysql_user_tls_requires.yml index 1226bc6..1fa0c94 100644 --- a/changelogs/fragments/mysql_user_tls_requires.yml +++ b/changelogs/fragments/mysql_user_tls_requires.yml @@ -2,6 +2,5 @@ minor_changes: - mysql_info - Add ``tls_requires`` returned value for the ``users_info`` filter (https://github.com/ansible-collections/community.mysql/pull/628). bugfixes: - - mysql_info - Fix ``users_info`` filter output variable for hashed password to use ``plugin_hash_string`` instead of ``plugin_auth_string`` (https://github.com/ansible-collections/community.mysql/pull/628). - mysql_user - Fix idempotence when using variables from the ``users_info`` filter of ``mysql_info`` as an input (https://github.com/ansible-collections/community.mysql/pull/628). - mysql_user - Fix ``tls_requires`` not removing ``SSL`` and ``X509`` when sets as empty (https://github.com/ansible-collections/community.mysql/pull/628). diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index a4b86b5..d4ae9dd 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -119,10 +119,10 @@ def get_existing_authentication(cursor, user, host): rows = list(rows.values()) if isinstance(rows[0], tuple): - return {'plugin': rows[0][0], 'plugin_hash_string': rows[0][1]} + return {'plugin': rows[0][0], 'plugin_auth_string': rows[0][1]} if isinstance(rows[0], dict): - return {'plugin': rows[0].get('plugin'), 'plugin_hash_string': rows[0].get('auth')} + return {'plugin': rows[0].get('plugin'), 'plugin_auth_string': rows[0].get('auth')} return None diff --git a/plugins/modules/mysql_info.py b/plugins/modules/mysql_info.py index b981e35..f84a096 100644 --- a/plugins/modules/mysql_info.py +++ b/plugins/modules/mysql_info.py @@ -230,7 +230,7 @@ users_info: - Does not support proxy privileges. If an account has proxy privileges, they won't appear in the output. - Causes issues with authentications plugins C(sha256_password) and C(caching_sha2_password). If the output is fed to M(community.mysql.mysql_user), the - ``plugin_hash_string`` will most likely be unreadable due to non-binary + ``plugin_auth_string`` will most likely be unreadable due to non-binary characters. returned: if not excluded by filter type: dict