From ed5bb1dc27f9139f3473b2eb86b56b0782d32245 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 7 Feb 2025 14:22:52 +0100 Subject: [PATCH] Do not log the passwords. --- tasks/configure_root_access.yml | 6 ++++-- tasks/manage_my_db.yml | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tasks/configure_root_access.yml b/tasks/configure_root_access.yml index 685c4a0..ba4e668 100644 --- a/tasks/configure_root_access.yml +++ b/tasks/configure_root_access.yml @@ -6,13 +6,14 @@ host: "{{ item }}" password: "{{ mysql_root_password }}" login_unix_socket: "{{ mysql_socket }}" + no_log: true when: mysql_root_password is defined loop: - 127.0.0.1 - ::1 - '{{ ansible_hostname }}' - localhost - ignore_errors: true + # ignore_errors: true tags: ['mysql', 'mysql_root'] - name: configure_root_access | Secure the mysql root user when no password has been defined @@ -27,7 +28,8 @@ - ::1 - '{{ ansible_hostname }}' - localhost - ignore_errors: true + no_log: true + # ignore_errors: true tags: ['mysql', 'mysql_root'] - name: configure_root_access | Install the .my.cnf file with root password credentials diff --git a/tasks/manage_my_db.yml b/tasks/manage_my_db.yml index da354c7..6e07b93 100644 --- a/tasks/manage_my_db.yml +++ b/tasks/manage_my_db.yml @@ -6,6 +6,7 @@ encoding: "{{ item.encoding }}" state: present login_unix_socket: "{{ mysql_socket }}" + no_log: true with_items: '{{ mysql_db_data | default([]) }}' when: item.name is defined tags: ['mysql', 'mysql_db'] @@ -32,6 +33,7 @@ priv: "{{ item.0.name }}.*:{{ item.0.additional_privs }}" state: present login_unix_socket: "{{ mysql_socket }}" + no_log: true with_subelements: - '{{ mysql_db_data | default([]) }}' - allowed_hosts