mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8 lines
234 B
Text
8 lines
234 B
Text
|
# 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 %}
|
||
|
|