1
0
IaC/terraform/cloudflare/variable_definitions.tf
2024-10-26 16:48:20 +13:00

18 lines
376 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 = []
}