self-hosting/roles/tinc/templates/tinc.conf.j2
Paul-Henri Froidmont e954247db5 Tinc setup
2018-09-18 04:00:12 +02:00

10 lines
277 B
Django/Jinja

Name = {{ inventory_hostname }}
AddressFamily = ipv4
Interface = {{ vpn_interface }}
Mode = switch
{% for host in play_hosts %}
{% if inventory_hostname != hostvars[host]['inventory_hostname'] %}
ConnectTo = {{ hostvars[host]['inventory_hostname'] }}
{% endif %}
{% endfor %}