about summary refs log tree commit diff
path: root/ops/glesys/dns-tvl-fyi.tf
diff options
context:
space:
mode:
Diffstat (limited to 'ops/glesys/dns-tvl-fyi.tf')
-rw-r--r--ops/glesys/dns-tvl-fyi.tf24
1 files changed, 19 insertions, 5 deletions
diff --git a/ops/glesys/dns-tvl-fyi.tf b/ops/glesys/dns-tvl-fyi.tf
index 803bfeae08..9d7972c412 100644
--- a/ops/glesys/dns-tvl-fyi.tf
+++ b/ops/glesys/dns-tvl-fyi.tf
@@ -53,13 +53,27 @@ resource "glesys_dnsdomain_record" "tvl_fyi_whitby_AAAA" {
   data   = var.whitby_ipv6
 }
 
-# This record is responsible for hosting ~all TVL services. Be
-# mindful!
-resource "glesys_dnsdomain_record" "tvl_fyi_wildcard" {
+resource "glesys_dnsdomain_record" "tvl_fyi_nixery-01_A" {
+  domain = glesys_dnsdomain.tvl_fyi.id
+  host   = "nixery-01"
+  type   = "A"
+  data   = "51.250.51.78"
+}
+
+# Explicit records for all services running on whitby
+resource "glesys_dnsdomain_record" "tvl_fyi_whitby_services" {
+  domain   = glesys_dnsdomain.tvl_fyi.id
+  type     = "CNAME"
+  data     = "whitby.tvl.fyi."
+  host     = each.key
+  for_each = toset(local.whitby_services)
+}
+
+resource "glesys_dnsdomain_record" "tvl_fyi_net_CNAME" {
   domain = glesys_dnsdomain.tvl_fyi.id
-  host   = "*"
   type   = "CNAME"
-  data   = "whitby.tvl.fyi."
+  data   = "sanduny.tvl.su."
+  host   = "net"
 }
 
 # Google Domains mail forwarding configuration (no sending)