Skip to content

Commit

Permalink
Consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Apr 29, 2024
1 parent 829d9d1 commit cca5e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/users.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# tasks file
---
- name: users | create (default hosts)
no_log: true
community.mysql.mysql_user:
name: "{{ item[0].name }}"
password: "{{ item[0].password }}"
priv: "{{ item[0].privs | join('/') }}"
host: "{{ item[1] }}"
state: present
no_log: true
check_implicit_admin: true
login_user: "{{ percona_server_root_username }}"
login_password: "{{ percona_server_root_password }}"
Expand All @@ -19,13 +19,13 @@
- percona-server-users-create-default-hosts

- name: users | create (custom hosts)
no_log: true
community.mysql.mysql_user:
name: "{{ item[0].name }}"
password: "{{ item[0].password }}"
priv: "{{ item[0].privs | join('/') }}"
host: "{{ item[1] }}"
state: present
no_log: true
check_implicit_admin: true
login_user: "{{ percona_server_root_username }}"
login_password: "{{ percona_server_root_password }}"
Expand Down

0 comments on commit cca5e68

Please sign in to comment.