From 4ce2b49cd9e14f862f16326b925aadcc28b9fdb6 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 18 Feb 2022 14:42:56 +0300 Subject: feat(ops/glesys): add DNS record for AAAA sanduny.tvl.su. Change-Id: I4a74cd173b326941c12b7611841ced2038650137 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5314 Autosubmit: tazjin Reviewed-by: sterni Tested-by: BuildkiteCI --- ops/glesys/dns-tvl-su.tf | 7 +++++++ ops/glesys/main.tf | 5 +++++ 2 files changed, 12 insertions(+) (limited to 'ops/glesys') diff --git a/ops/glesys/dns-tvl-su.tf b/ops/glesys/dns-tvl-su.tf index 051e9752c4..39fd054e01 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 a16a1fc540..9032d501a5 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" +} -- cgit 1.4.1