github.com/noirx94/tendermintmp@v0.0.1/networks/remote/terraform/cluster/variables.tf (about)

     1  variable "name" {
     2    description = "The cluster name, e.g cdn"
     3  }
     4  
     5  variable "regions" {
     6    description = "Regions to launch in"
     7    type = "list"
     8    default = ["AMS3", "FRA1", "LON1", "NYC3", "SFO2", "SGP1", "TOR1"]
     9  }
    10  
    11  variable "ssh_key" {
    12    description = "SSH key filename to copy to the nodes"
    13    type = "string"
    14  }
    15  
    16  variable "instance_size" {
    17    description = "The instance size to use"
    18    default = "2gb"
    19  }
    20  
    21  variable "servers" {
    22    description = "Desired instance count"
    23    default     = 4
    24  }
    25