From cdc4005ea1454e7d1ad4a14b0cb1491008e1314e Mon Sep 17 00:00:00 2001 From: c-bordon Date: Thu, 27 Jun 2024 17:18:37 -0300 Subject: [PATCH] Fixed docker image --- roles/wazuh/wazuh-indexer/tasks/local_actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/wazuh/wazuh-indexer/tasks/local_actions.yml b/roles/wazuh/wazuh-indexer/tasks/local_actions.yml index 5ebe13db..d8b63c79 100644 --- a/roles/wazuh/wazuh-indexer/tasks/local_actions.yml +++ b/roles/wazuh/wazuh-indexer/tasks/local_actions.yml @@ -55,7 +55,7 @@ - name: Local action | Run Docker container on macOS community.docker.docker_container: name: wazuh-cert-tool - image: "wazuh-certs-tool" + image: "wazuh/wazuh-cert-tool" state: started auto_remove: true volumes: @@ -65,7 +65,7 @@ - name: Local action | Remove Docker image after execution community.docker.docker_image: - name: "wazuh-certs-tool" + name: "wazuh/wazuh-cert-tool" state: absent force_absent: yes when: ansible_os_family == 'Darwin'