add more dns records
This commit is contained in:
@ -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 = []
|
||||
}
|
Reference in New Issue
Block a user