kubernetes-init/modules/cloudflare/variables.tf

23 lines
387 B
Terraform
Raw Normal View History

2022-05-08 15:51:41 +02:00
variable "api_token" {
description = "cloudflare token"
type = string
nullable = false
sensitive = true
}
variable "zone_id" {
description = "cloudflare zone id "
type = string
nullable = false
}
variable "records" {
description = "cloudflare records"
type = list(object({
name = string
ip = string
ip_type = string
}))
}