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 <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
This commit is contained in:
parent
d68de096c7
commit
4ce2b49cd9
2 changed files with 12 additions and 0 deletions
|
@ -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" {
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue