1
0
IaC/terraform/cloudflare/variable_definitions.tf
2024-10-23 00:22:32 -04:00

21 lines
442 B
HCL

variable "api_token" {
description = "Cloudflare account API token"
type = string
default = ""
sensitive = true
}
variable "account_name" {
description = "Cloudflare account name"
type = string
default = ""
}
variable "a_records" {
description = "DNS A records to create"
type = list(object({
name = string
content = string
}))
default = []
}