You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
416 B
Plaintext
15 lines
416 B
Plaintext
4 years ago
|
{{ ansible_managed | comment }}
|
||
|
# For unmanaged host {{ item.item.host }}
|
||
|
# qrencode -t ansiutf8 < /etc/wireguard/{{ item.item.host }}.conf
|
||
|
[Interface]
|
||
|
PrivateKey = {{ item.stdout }}
|
||
|
Address = {{ item.item.allowed_ips }}
|
||
|
{% if item.item.dns is defined %}
|
||
|
DNS = {{ item.item.dns }}
|
||
|
{% endif %}
|
||
|
|
||
|
[Peer]
|
||
|
Endpoint = {{ wireguard_endpoint }}:{{ wireguard_port }}
|
||
|
PublicKey = {{ public_key }}
|
||
|
AllowedIPs = 0.0.0.0/0, ::/0
|