1
0
IaC/terraform/cloudflare/variable_definitions.tf
2024-10-24 18:39:30 +13:00

24 lines
535 B
HCL

variable "api_token" {
description = "Cloudflare account API token"
type = string
default = ""
sensitive = true
}
variable "a_records" {
description = "DNS A records to create"
type = map(string)
default = {}
}
variable "cname_records" {
description = "DNS CNAME records to create"
type = map(string)
default = {}
}
variable "root_records" {
description = "Special root records to create with name @"
type = map(string)
default = {}
}