From 01f9ce7503ae13ea310c04d571aabb81305085ee Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Mon, 19 Jan 2026 18:47:16 +0100 Subject: [PATCH] infra: add missing wireguard dns records --- infra/web.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/infra/web.nix b/infra/web.nix index c9b1615..2513a6a 100644 --- a/infra/web.nix +++ b/infra/web.nix @@ -64,5 +64,19 @@ type = "AAAA"; records = [ { value = infra.machines.verbena.ipv6; } ]; }; + + wg1_turifer_dev_a = { + zone = config.resource.hcloud_zone.turifer_dev "name"; + name = "wg1"; + type = "A"; + records = [ { value = infra.machines.verbena.ipv4; } ]; + }; + + wg1_turifer_dev_aaaa = { + zone = config.resource.hcloud_zone.turifer_dev "name"; + name = "wg1"; + type = "AAAA"; + records = [ { value = infra.machines.verbena.ipv6; } ]; + }; }; }