ansible/roles/openvpn/templates/openvpn.conf.j2

16 lines
305 B
Plaintext
Raw Normal View History

2022-08-30 12:49:30 +00:00
# {{ ansible_managed }}
{% for k, v in openvpn_config[instance].items() %}
{% if v is string %}
{{ k }} {{ v }}
{% elif v is sequence %}
{% for vv in v %}
{{ k }} {{ vv | quote if k == "push" else vv }}
{% endfor %}
{% elif v is not defined %}
{{ k }}
{% else %}
{{ k }} {{ v }}
{% endif %}
{% endfor %}