1
0
IaC/terraform/cloudflare/variable_definitions.tf
2024-11-29 01:35:04 -05:00

41 lines
891 B
HCL

variable "api_token" {
description = "Cloudflare account API token"
type = string
default = ""
sensitive = true
}
variable "dns_records" {
description = "DNS A records to create"
type = list(object({
name = string
type = string
content = string
ttl = number
}))
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 = []
}