feat(ops/glesys): add DNS record for A sanduny.tvl.su.

Change-Id: I12e678f161ca9bfb7e982ed067a0b8bd0325d737
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5296
Reviewed-by: sterni <sternenseemann@systemli.org>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-02-16 22:35:47 +03:00 committed by tazjin
parent ac6717fe3c
commit d68de096c7
2 changed files with 12 additions and 0 deletions

View file

@ -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" {

View file

@ -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"
}