temper-tv/infra/local.tf
shockrah 71cf655767 Creating DNS entries for temper.tv
New ACM certs are still required for the LB to handle requests here properly
2023-10-01 03:11:45 -07:00

21 lines
540 B
HCL

locals {
temper-tv-records = [
# These came with the zone for some reason so there's no need to
# insert them ourselves IG /shrug
# {
# name = "temper.tv"
# type = "NS"
# ttl = 172800
# records = [
# "ns-657.awsdns-18.net,
# "ns-1756.awsdns-27.co.uk",
# "ns-1366.awsdns-42.org",
# "ns-288.awsdns-36.com",
# ]
# }
# NOTE SOA record is also taken care of for us :)
# Required for mails to work here
]
}