7 lines
163 B
Plaintext
7 lines
163 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
|
||
|
{% for ip in item.ips %}
|
||
|
{% set aliases = item.get('aliases', []) %}
|
||
|
{{ ip }} {{ ([item.hostname] + aliases) | join(' ') }}
|
||
|
{% endfor %}
|