From 084c8825662cef7c540dea358dd908e3fd41fe85 Mon Sep 17 00:00:00 2001 From: AnthonyTissot <130548838+AnthonyTissot@users.noreply.github.com> Date: Sat, 15 Apr 2023 14:59:28 +0200 Subject: [PATCH] use community.mysql.mysql_user (#160) to avoid to have unknow plugin option --- tasks/mysql_users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/mysql_users.yml b/tasks/mysql_users.yml index 6243308..8fb3a49 100644 --- a/tasks/mysql_users.yml +++ b/tasks/mysql_users.yml @@ -43,7 +43,7 @@ when: mariadb_sst_user_plugin == "mysql_native_password" - name: mysql_users | create MySQL users - mysql_user: + community.mysql.mysql_user: append_privs: "{{ item.0.append_privs | default('no') }}" encrypted: "{{ item.0.encrypted | default('no') }}" host: "{{ item.1 }}"