mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-21 02:31:19 +00:00
31 lines
557 B
HCL
31 lines
557 B
HCL
variable "name" {
|
|
description = "The cluster name, e.g cdn"
|
|
}
|
|
|
|
variable "image_id" {
|
|
description = "Image ID"
|
|
default = "ubuntu-14-04-x64"
|
|
}
|
|
|
|
variable "regions" {
|
|
description = "Regions to launch in"
|
|
type = "list"
|
|
default = ["AMS2", "FRA1", "LON1", "NYC2", "SFO2", "SGP1", "TOR1"]
|
|
}
|
|
|
|
variable "key_ids" {
|
|
description = "SSH keys to use on the nodes"
|
|
type = "list"
|
|
}
|
|
|
|
variable "instance_size" {
|
|
description = "The instance size to use"
|
|
default = "2gb"
|
|
}
|
|
|
|
variable "servers" {
|
|
description = "Desired instance count"
|
|
default = 4
|
|
}
|
|
|