diff options
author | Vincent Ambo <mail@tazj.in> | 2023-06-20T11·06+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-06-20T12·21+0000 |
commit | 15152e0d11622cad9242f2134ff0c75c34c47ed5 (patch) | |
tree | cb905d65a45e436e5ce337a816a2e67affa6a9b0 /ops | |
parent | b25d98a84e9830c3f800ca8c84d9df09d6b1296d (diff) |
feat(ops/glesys): add `net.tvl.fyi` CNAME for sanduny r/6338
This will host a headscale server for TVL. Change-Id: I8769852aaaf7a02a2d63f48ecf5adfd86747ff72 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8835 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'ops')
-rw-r--r-- | ops/glesys/dns-tvl-fyi.tf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ops/glesys/dns-tvl-fyi.tf b/ops/glesys/dns-tvl-fyi.tf index 26105e9fdc38..43b7def75032 100644 --- a/ops/glesys/dns-tvl-fyi.tf +++ b/ops/glesys/dns-tvl-fyi.tf @@ -62,6 +62,13 @@ resource "glesys_dnsdomain_record" "tvl_fyi_whitby_services" { for_each = toset(local.whitby_services) } +resource "glesys_dnsdomain_record" "tvl_fyi_net_CNAME" { + domain = glesys_dnsdomain.tvl_fyi.id + type = "CNAME" + data = "sanduny.tvl.su." + host = "net" +} + # Google Domains mail forwarding configuration (no sending) resource "glesys_dnsdomain_record" "tvl_fyi_MX_5" { domain = glesys_dnsdomain.tvl_fyi.id |