diff options
Diffstat (limited to 'ops/glesys')
-rw-r--r-- | ops/glesys/dns-tvl-su.tf | 7 | ||||
-rw-r--r-- | ops/glesys/main.tf | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ops/glesys/dns-tvl-su.tf b/ops/glesys/dns-tvl-su.tf index 051e9752c4ab..39fd054e01dd 100644 --- a/ops/glesys/dns-tvl-su.tf +++ b/ops/glesys/dns-tvl-su.tf @@ -60,6 +60,13 @@ resource "glesys_dnsdomain_record" "tvl_su_sanduny_A" { data = var.sanduny_ipv4 } +resource "glesys_dnsdomain_record" "tvl_su_sanduny_AAAA" { + domain = glesys_dnsdomain.tvl_su.id + host = "sanduny" + type = "AAAA" + data = var.sanduny_ipv6 +} + # 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 a16a1fc5402d..9032d501a518 100644 --- a/ops/glesys/main.tf +++ b/ops/glesys/main.tf @@ -65,3 +65,8 @@ variable "sanduny_ipv4" { type = string default = "85.119.82.231" } + +variable "sanduny_ipv6" { + type = string + default = "2001:ba8:1f1:f109::feed:edef:beef" +} |