63ca114c95
- migrate dictionary `ipv6` into two simple lists - migrate dictionary `forward_zones` into a list
9 lines
216 B
Django/Jinja
9 lines
216 B
Django/Jinja
{% set local_interface = item.id + 'igVPN' -%}
|
|
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
{% for interface in fastd_secrets %}
|
|
{% if local_interface == interface %}
|
|
secret "{{ fastd_secrets[interface] }}";
|
|
{% endif %}
|
|
{% endfor %}
|