From 9062878cd1022b117439b6ab67c68b4f6504e5a3 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 6 Feb 2025 19:45:59 +0100 Subject: [PATCH] Fix the mysql_user collection name. --- tasks/configure_root_access.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/configure_root_access.yml b/tasks/configure_root_access.yml index 9cfcf3d..685c4a0 100644 --- a/tasks/configure_root_access.yml +++ b/tasks/configure_root_access.yml @@ -1,7 +1,7 @@ --- # 'localhost' needs to be the last item for idempotency, the mysql_user docs - name: configure_root_access | Secure the mysql root user with a password - acommunity.mysql.mysql_user: + community.mysql.mysql_user: name: root host: "{{ item }}" password: "{{ mysql_root_password }}"