infra-les/variables.tf

31 lines
682 B
Terraform
Raw Permalink Normal View History

2018-11-23 15:54:09 +00:00
/* REQUIRED -------------------------------------*/
variable "cloudflare_token" {
2018-11-23 15:54:09 +00:00
description = "Token for interacting with Cloudflare API."
}
variable "digitalocean_token" {
2018-11-23 15:54:09 +00:00
description = "Token for interacting with DigitalOcean API."
}
variable "cloudflare_email" {
2018-11-23 15:54:09 +00:00
description = "Email address of Cloudflare account."
}
variable "cloudflare_org_id" {
2018-11-23 15:54:09 +00:00
description = "ID of the CloudFlare organization."
}
/* GENERAL --------------------------------------*/
variable "public_domain" {
2018-11-23 15:54:09 +00:00
description = "Domain under which the public sites go."
default = "status.im"
}
variable "domain" {
2018-11-23 15:54:09 +00:00
description = "DNS Domain to update"
default = "statusim.net"
}