aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles')
-rw-r--r--ansible/roles/wireguard/tasks/main.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible/roles/wireguard/tasks/main.yml b/ansible/roles/wireguard/tasks/main.yml
index a663be3..9d87c5b 100644
--- a/ansible/roles/wireguard/tasks/main.yml
+++ b/ansible/roles/wireguard/tasks/main.yml
@@ -133,3 +133,23 @@
rule: allow
port: "{{ wireguard__listen_port }}"
proto: udp
+
+- name: generate dns records
+ tags: wireguard-dns-records
+ when: wireguard__role == 'server'
+ local_action:
+ module: copy
+ content: |
+ wireguard_dns_records_{{ wireguard__net_id }}:
+ {% for c in wireguard__clients|sort %}
+ {% set client = wireguard__clients[c] %}
+ - type: A
+ name: {{ c }}
+ value: {{ client.ipv4 }}
+ state: {{ client.state }}
+ - type: AAAA
+ name: {{ c }}
+ value: {{ client.ipv6 }}
+ state: {{ client.state }}
+ {% endfor %}
+ dest: "files/wireguard-dns-records-{{ wireguard__net_id }}.yml"