Compare commits

...

2 commits

Author SHA1 Message Date
teutat3s 15eca411ba
dns: list.pub.solar should be A / AAAA records
All checks were successful
Flake checks / Check (pull_request) Successful in 23m51s
2024-10-28 21:39:00 +01:00
teutat3s ba84cefc41
dns: add CNAME record for mas.pub.solar 2024-10-28 21:38:43 +01:00

View file

@ -109,6 +109,11 @@ resource "namecheap_domain_records" "pub-solar" {
type = "CNAME"
address = "nachtigall.pub.solar."
}
record {
hostname = "mas"
type = "CNAME"
address = "nachtigall.pub.solar."
}
record {
hostname = "ci"
type = "A"
@ -184,11 +189,6 @@ resource "namecheap_domain_records" "pub-solar" {
type = "CNAME"
address = "nachtigall.pub.solar."
}
record {
hostname = "list"
type = "CNAME"
address = "nachtigall.pub.solar."
}
record {
hostname = "obs-portal"
type = "CNAME"
@ -322,6 +322,16 @@ resource "namecheap_domain_records" "pub-solar" {
address = "list.pub.solar."
mx_pref = "0"
}
record {
hostname = "list"
type = "A"
address = "138.201.80.102"
}
record {
hostname = "list"
type = "AAAA"
address = "2a01:4f8:172:1c25::1"
}
record {
hostname = "nachtigall"
type = "A"