mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
11 lines
277 B
Text
11 lines
277 B
Text
|
|
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 %}
|
||
|
|
|