infra-faucet/variables.tf
Jakub Sokołowski d79a3f7d6d
terraform: specify provider versions
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-01-07 21:16:29 +01:00

21 lines
459 B
HCL

/* REQUIRED -------------------------------------*/
variable "cloudflare_token" {
description = "Token for interacting with Cloudflare API."
}
variable "cloudflare_email" {
description = "Email address of Cloudflare account."
}
variable "cloudflare_account" {
description = "ID of CloudFlare Account."
}
/* GENERAL --------------------------------------*/
variable "domain" {
description = "DNS Domain to update"
default = "statusim.net"
}