Extract playbook actions to roles

This commit is contained in:
Pijus Kamandulis
2024-05-31 01:17:29 +03:00
parent 311d6ce925
commit 5ee8b48ff7
38 changed files with 414 additions and 463 deletions
@@ -0,0 +1,12 @@
# {{ ansible_managed }}
[Interface]
PrivateKey = {{ wireguard.private_key }}
ListenPort = {{ wireguard.port }}
{% for peer in wireguard.peers %}
[Peer]
# {{ peer.name }}
PublicKey = {{ peer.public_key }}
Endpoint = {{ peer.endpoint }}
AllowedIPs = {{ peer.allowed_ips }}
{% endfor %}
@@ -0,0 +1,5 @@
# {{ ansible_managed }}
inet {{ wireguard.address }} 255.255.255.0 NONE
up
!/usr/local/bin/wg setconf {{ wireguard.interface }} /etc/wireguard/{{ wireguard.interface }}.conf