24 lines
562 B
Terraform
24 lines
562 B
Terraform
# variable "cloudflare_zone_id" {
|
|
# description = "The Cloudflare UUID for the Zone to use."
|
|
# type = string
|
|
# }
|
|
|
|
variable "cloudflare_account_id" {
|
|
description = "The Cloudflare UUID for the Account the Zone lives in."
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_email" {
|
|
description = "The Cloudflare user."
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_token" {
|
|
description = "The Cloudflare user's API token."
|
|
type = string
|
|
}
|
|
|
|
# variable "zone" {
|
|
# description = "The Cloudflare user's API token."
|
|
# type = string
|
|
# } |