1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add template example so I don't have to remember how it works

This commit is contained in:
Michael DeHaan 2012-08-21 20:46:11 -04:00
parent f264f50f17
commit ffdca762fa

View file

@ -0,0 +1,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 %}