--- - name: Load Filebeat Dashboards hosts: hosts[0] gather_facts: true vars_files: - vars/variables.yml pre_tasks: - include_tasks: common_task_data_node_hosts.yml tags: - always tasks: - name: Load templates shell: >- filebeat setup {{ item }} -E 'output.logstash.enabled=false' -E 'output.elasticsearch.hosts={{ coordination_nodes | to_json }}' -e -v with_items: - "--template" - "--dashboards" register: templates until: templates is success retries: 5 delay: 5 tags: - beat-setup