From b1df479f5bb53ae6867b57e446af1c852afda554 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 11 Jan 2025 08:11:36 +0300 Subject: [PATCH] feat(ops/glesys): add DNS record for bugry.tvl.fyi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Another new dedicated server, which we can use for various ... dedicated server things. Located in Novosibirsk. The name of the old village that used to be where the city now is, Бугры, was too good to pass up when spelled in English as a hostname. Obvious choice! Change-Id: I9de7bc078199e9d87284139556024dc3738d3b24 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12967 Reviewed-by: sterni Autosubmit: tazjin Tested-by: BuildkiteCI --- ops/glesys/dns-tvl-fyi.tf | 7 +++++++ ops/glesys/main.tf | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/ops/glesys/dns-tvl-fyi.tf b/ops/glesys/dns-tvl-fyi.tf index 5658ecbfc..600b4ed54 100644 --- a/ops/glesys/dns-tvl-fyi.tf +++ b/ops/glesys/dns-tvl-fyi.tf @@ -67,6 +67,13 @@ resource "glesys_dnsdomain_record" "tvl_fyi_nevsky_AAAA" { data = var.nevsky_ipv6 } +resource "glesys_dnsdomain_record" "tvl_fyi_bugry_A" { + domain = glesys_dnsdomain.tvl_fyi.id + host = "bugry" + type = "A" + data = var.bugry_ipv4 +} + resource "glesys_dnsdomain_record" "tvl_fyi_nixery-01_A" { domain = glesys_dnsdomain.tvl_fyi.id host = "nixery-01" diff --git a/ops/glesys/main.tf b/ops/glesys/main.tf index 4a5079e74..d675987f1 100644 --- a/ops/glesys/main.tf +++ b/ops/glesys/main.tf @@ -71,6 +71,11 @@ variable "nevsky_ipv6" { default = "2a03:6f00:2:514b:0:feed:edef:beef" } +variable "bugry_ipv4" { + type = string + default = "91.199.149.239" +} + variable "sanduny_ipv4" { type = string default = "85.119.82.231"