From 4a3ff23794195ca1e79907705ed4049c46edbbc9 Mon Sep 17 00:00:00 2001 From: Manuel Gutierrez <1380243+xr09@users.noreply.github.com> Date: Tue, 27 Oct 2020 15:04:29 +0100 Subject: [PATCH] Fixed cluster example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93d7a0dc..47235d22 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ The hereunder example playbook uses the `wazuh-ansible` role to provision a prod node_type: 'master' key: 'c98b62a9b6169ac5f67dae55ae4a9088' nodes: - - '"{{ hostvars.manager.private_ip }}"' + - "{{ hostvars.manager.private_ip }}" hidden: 'no' filebeat_output_elasticsearch_hosts: - "{{ hostvars.es1.private_ip }}" @@ -196,7 +196,7 @@ The hereunder example playbook uses the `wazuh-ansible` role to provision a prod node_type: 'worker' key: 'c98b62a9b6169ac5f67dae55ae4a9088' nodes: - - '"{{ hostvars.manager.private_ip }}"' + - "{{ hostvars.manager.private_ip }}" hidden: 'no' filebeat_output_elasticsearch_hosts: - "{{ hostvars.es1.private_ip }}"