diff options
author | Vincent Ambo <mail@tazj.in> | 2023-03-14T16·24+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-03-14T21·59+0000 |
commit | 3370724062499ece9f4e841aba3564e96e95afbb (patch) | |
tree | cef8cc03a0f8a75db1a9bdb57b9893baabe2496f | |
parent | a14880903cb63f80d857cb4062bbbc099c12c69e (diff) |
feat(ops/glesys): point tvix.dev at whitby r/6001
Change-Id: Ied022e6c1a8039a9db375a8593afb76edcaa6dbd Reviewed-on: https://cl.tvl.fyi/c/depot/+/8295 Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
-rw-r--r-- | ops/glesys/dns-tvix-dev.tf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ops/glesys/dns-tvix-dev.tf b/ops/glesys/dns-tvix-dev.tf new file mode 100644 index 000000000000..3e99ac6f1597 --- /dev/null +++ b/ops/glesys/dns-tvix-dev.tf @@ -0,0 +1,40 @@ +# DNS configuration for tvix.dev + +resource "glesys_dnsdomain" "tvix_dev" { + name = "tvix.dev" +} + +resource "glesys_dnsdomain_record" "tvix_dev_apex_A" { + domain = glesys_dnsdomain.tvix_dev.id + host = "@" + type = "A" + data = var.whitby_ipv4 +} + +resource "glesys_dnsdomain_record" "tvix_dev_apex_AAAA" { + domain = glesys_dnsdomain.tvix_dev.id + host = "@" + type = "AAAA" + data = var.whitby_ipv6 +} + +resource "glesys_dnsdomain_record" "tvix_dev_NS1" { + domain = glesys_dnsdomain.tvix_dev.id + host = "@" + type = "NS" + data = "ns1.namesystem.se." +} + +resource "glesys_dnsdomain_record" "tvix_dev_NS2" { + domain = glesys_dnsdomain.tvix_dev.id + host = "@" + type = "NS" + data = "ns2.namesystem.se." +} + +resource "glesys_dnsdomain_record" "tvix_dev_NS3" { + domain = glesys_dnsdomain.tvix_dev.id + host = "@" + type = "NS" + data = "ns3.namesystem.se." +} |