feat(ops/glesys): add DNS record for nixery-01 host
Change-Id: I9fe8497688764a6a0934a2c02264f93b2078fb1c Reviewed-on: https://cl.tvl.fyi/c/depot/+/9427 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
parent
6b607976ea
commit
1fe6c0c7fa
1 changed files with 7 additions and 0 deletions
|
@ -53,6 +53,13 @@ resource "glesys_dnsdomain_record" "tvl_fyi_whitby_AAAA" {
|
|||
data = var.whitby_ipv6
|
||||
}
|
||||
|
||||
resource "glesys_dnsdomain_record" "tvl_fyi_nixery-01_A" {
|
||||
domain = glesys_dnsdomain.tvl_fyi.id
|
||||
host = "nixery-01"
|
||||
type = "A"
|
||||
data = "51.250.48.185"
|
||||
}
|
||||
|
||||
# Explicit records for all services running on whitby
|
||||
resource "glesys_dnsdomain_record" "tvl_fyi_whitby_services" {
|
||||
domain = glesys_dnsdomain.tvl_fyi.id
|
||||
|
|
Loading…
Reference in a new issue