Beginning-Ansible-Concepts-.../chapter07/templates/index.html.j2

17 lines
279 B
Text
Raw Normal View History

2022-03-21 18:17:54 +01:00
My website, served from {{ inventory_hostname }}
<p>
IP Addresses:<br />
{% for ip in ansible_all_ipv4_addresses %}
{{ ip }}<br />
{% endfor %}
</p>
<p>
Operating System:<br />
{% for key, value in ansible_lsb.items() %}
{{ key }}: {{ value }}<br />
{% endfor %}
</p>