1
0
IaC/terraform/cloudflare/variable_definitions.tf

24 lines
535 B
Terraform
Raw Normal View History

2024-10-23 00:22:32 -04:00
variable "api_token" {
description = "Cloudflare account API token"
type = string
default = ""
sensitive = true
}
variable "a_records" {
description = "DNS A records to create"
2024-10-24 01:39:30 -04:00
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 = {}
2024-10-23 00:22:32 -04:00
}