You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
557 B

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
}