mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Add reimport of users in the database to see if there is changes
This commit is contained in:
parent
1c93c1bd66
commit
367a528058
1 changed files with 11 additions and 0 deletions
|
@ -79,6 +79,17 @@
|
|||
|
||||
- debug: var=result
|
||||
|
||||
- name: Insert the users privileges as input of mysql_user
|
||||
community.mysql.mysql_user:
|
||||
name: "{{ item.user }}"
|
||||
host: "{{ item.host }}"
|
||||
password: "{{ item.password }}"
|
||||
encrypted: true
|
||||
priv: "{{ item.priv | default(omit) }}"
|
||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
||||
state: present
|
||||
loop: "{{ result.users_privs }}"
|
||||
|
||||
# ================================== Cleanup ============================
|
||||
|
||||
- name: Mysql_info users_privs | Cleanup databases
|
||||
|
|
Loading…
Add table
Reference in a new issue