quote names of variables

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-07-17 23:09:23 -04:00
parent 689c8a8bee
commit 91cafbb973
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 7 additions and 6 deletions

View File

@ -1,29 +1,30 @@
/* REQUIRED -------------------------------------*/
variable cloudflare_token {
variable "cloudflare_token" {
description = "Token for interacting with Cloudflare API."
}
variable digitalocean_token {
variable "digitalocean_token" {
description = "Token for interacting with DigitalOcean API."
}
variable cloudflare_email {
variable "cloudflare_email" {
description = "Email address of Cloudflare account."
}
variable cloudflare_org_id {
variable "cloudflare_org_id" {
description = "ID of the CloudFlare organization."
}
/* GENERAL --------------------------------------*/
variable public_domain {
variable "public_domain" {
description = "Domain under which the public sites go."
default = "status.im"
}
variable domain {
variable "domain" {
description = "DNS Domain to update"
default = "statusim.net"
}