about summary refs log tree commit diff
path: root/ops/glesys
diff options
context:
space:
mode:
Diffstat (limited to 'ops/glesys')
-rw-r--r--ops/glesys/dns-tvl-su.tf7
-rw-r--r--ops/glesys/main.tf5
2 files changed, 12 insertions, 0 deletions
diff --git a/ops/glesys/dns-tvl-su.tf b/ops/glesys/dns-tvl-su.tf
index 18f581132a..051e9752c4 100644
--- a/ops/glesys/dns-tvl-su.tf
+++ b/ops/glesys/dns-tvl-su.tf
@@ -53,6 +53,13 @@ resource "glesys_dnsdomain_record" "tvl_su_whitby_AAAA" {
   data   = var.whitby_ipv6
 }
 
+resource "glesys_dnsdomain_record" "tvl_su_sanduny_A" {
+  domain = glesys_dnsdomain.tvl_su.id
+  host   = "sanduny"
+  type   = "A"
+  data   = var.sanduny_ipv4
+}
+
 # This record is responsible for hosting ~all TVL services. Be
 # mindful!
 resource "glesys_dnsdomain_record" "tvl_su_wildcard" {
diff --git a/ops/glesys/main.tf b/ops/glesys/main.tf
index 857c1677fb..a16a1fc540 100644
--- a/ops/glesys/main.tf
+++ b/ops/glesys/main.tf
@@ -60,3 +60,8 @@ variable "whitby_ipv6" {
   type    = string
   default = "2a01:4f8:242:5b21:0:feed:edef:beef"
 }
+
+variable "sanduny_ipv4" {
+  type    = string
+  default = "85.119.82.231"
+}