Add tls_requires to users_info filter

This commit is contained in:
Laurent Indermuehle 2024-04-08 17:38:34 +02:00
parent 5325d0cb02
commit 5f097aaea8
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -300,6 +300,7 @@ from ansible_collections.community.mysql.plugins.module_utils.user import (
privileges_get, privileges_get,
get_resource_limits, get_resource_limits,
get_existing_authentication, get_existing_authentication,
get_tls_requires,
) )
from ansible.module_utils.six import iteritems from ansible.module_utils.six import iteritems
from ansible.module_utils._text import to_native from ansible.module_utils._text import to_native
@ -602,13 +603,16 @@ class MySQL_Info(object):
priv_string.remove('*.*:USAGE') priv_string.remove('*.*:USAGE')
resource_limits = get_resource_limits(self.cursor, user, host) resource_limits = get_resource_limits(self.cursor, user, host)
copy_ressource_limits = dict.copy(resource_limits) copy_ressource_limits = dict.copy(resource_limits)
tls_requires = get_tls_requires(self.cursor, user, host)
output_dict = { output_dict = {
'name': user, 'name': user,
'host': host, 'host': host,
'priv': '/'.join(priv_string), 'priv': '/'.join(priv_string),
'resource_limits': copy_ressource_limits, 'resource_limits': copy_ressource_limits,
'tls_requires': tls_requires,
} }
# Prevent returning a resource limit if empty # Prevent returning a resource limit if empty
@ -619,6 +623,10 @@ class MySQL_Info(object):
if len(output_dict['resource_limits']) == 0: if len(output_dict['resource_limits']) == 0:
del output_dict['resource_limits'] del output_dict['resource_limits']
# Prevent returning tls_require if empty
if not tls_requires:
del output_dict['tls_requires']
authentications = get_existing_authentication(self.cursor, user, host) authentications = get_existing_authentication(self.cursor, user, host)
if authentications: if authentications:
output_dict.update(authentications) output_dict.update(authentications)