mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Add template example so I don't have to remember how it works
This commit is contained in:
7
examples/playbooks/templates/hostvars.j2
Normal file
7
examples/playbooks/templates/hostvars.j2
Normal 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 %}
|
||||
|
||||
Reference in New Issue
Block a user