10 lines
215 B
Text
10 lines
215 B
Text
|
{% set local_interface = item.key + 'VPN' -%}
|
||
|
#
|
||
|
# {{ ansible_managed }}
|
||
|
#
|
||
|
{% for interface in fastd_secrets %}
|
||
|
{% if local_interface == interface %}
|
||
|
secret "{{ fastd_secrets[interface] }}";
|
||
|
{% endif %}
|
||
|
{% endfor %}
|