diff --git a/haproxy.yml b/haproxy.yml index 51229f5..17af1b7 100644 --- a/haproxy.yml +++ b/haproxy.yml @@ -33,4 +33,12 @@ service: name: haproxy enabled: true - state: started \ No newline at end of file + state: started + - name: append hosts to etc_hosts + blockinfile: + state: present + dest: /etc/hosts + content: | + {% for host in groups.all %} + {{ host }} {{ hostvars\[host\]\['hostname'\] }} + {% endfor %} \ No newline at end of file