add more dns records

This commit is contained in:
2024-11-29 01:35:04 -05:00
parent d6983b4744
commit 1775e24a45
3 changed files with 73 additions and 25 deletions

View File

@ -15,3 +15,27 @@ variable "dns_records" {
}))
default = []
}
variable "mx_records" {
description = "DNS MX records to create"
type = list(object({
name = string
type = string
content = string
priority = number
ttl = number
}))
default = []
}
variable "caa_records" {
description = "DNS CAA records to create"
type = list(object({
name = string
type = string
content = string
# priority = number
ttl = number
}))
default = []
}