21 lines
540 B
Terraform
21 lines
540 B
Terraform
|
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
|
||
|
]
|
||
|
}
|
||
|
|