hostvars.j2 234 Bytes
Newer Older
1 2 3 4 5 6 7
# example of how to get the ipaddress of every machine in the webservers group
# for use in a template

{% for host in groups['webservers'] %}
  HOST: {{ host }} IP: {{ hostvars[host]['ansible_all_ipv4_addresses'][0] }}
{% endfor %}