about summary refs log tree commit diff
path: root/ops/glesys
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-09-22T17·19+0300
committertazjin <tazjin@tvl.su>2023-09-22T17·52+0000
commit1fe6c0c7fadc5629059dffacbf9467b7677bd99b (patch)
tree276b049e9c16d1eecd83fd78e2780d8ae5e89535 /ops/glesys
parent6b607976ea6931f7c2f7404f9f974bfa01d937b2 (diff)
feat(ops/glesys): add DNS record for nixery-01 host r/6636
Change-Id: I9fe8497688764a6a0934a2c02264f93b2078fb1c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9427
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'ops/glesys')
-rw-r--r--ops/glesys/dns-tvl-fyi.tf7
1 files changed, 7 insertions, 0 deletions
diff --git a/ops/glesys/dns-tvl-fyi.tf b/ops/glesys/dns-tvl-fyi.tf
index 43b7def750..e448bc4486 100644
--- a/ops/glesys/dns-tvl-fyi.tf
+++ b/ops/glesys/dns-tvl-fyi.tf
@@ -53,6 +53,13 @@ resource "glesys_dnsdomain_record" "tvl_fyi_whitby_AAAA" {
   data   = var.whitby_ipv6
 }
 
+resource "glesys_dnsdomain_record" "tvl_fyi_nixery-01_A" {
+  domain = glesys_dnsdomain.tvl_fyi.id
+  host   = "nixery-01"
+  type   = "A"
+  data   = "51.250.48.185"
+}
+
 # Explicit records for all services running on whitby
 resource "glesys_dnsdomain_record" "tvl_fyi_whitby_services" {
   domain   = glesys_dnsdomain.tvl_fyi.id