From 6ad7d2224518b358b2883acaeccbde8bb21b43a0 Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Sun, 22 Oct 2023 16:10:06 +0200 Subject: [PATCH] terraform: Add DNS entries for nachtigall --- terraform/lev-1/dns.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/terraform/lev-1/dns.tf b/terraform/lev-1/dns.tf index 2b4ce70..bca3b15 100644 --- a/terraform/lev-1/dns.tf +++ b/terraform/lev-1/dns.tf @@ -147,6 +147,16 @@ resource "namecheap_domain_records" "pub-solar" { address = "list.pub.solar" mx_pref = "0" } + record { + hostname = "nachtigall" + type = "A" + address = "138.201.80.102" + } + record { + hostname = "nachtigall" + type = "AAAA" + address = "2a01:4f8:172:1c25::1" + } # SRV records can only be changed via NameCheap Web UI # add comment }