2015-06-01 05:26:50 +00:00
|
|
|
variable "platform" {
|
|
|
|
default = "ubuntu"
|
|
|
|
description = "The region of AWS, for AMI lookups."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "user" {
|
|
|
|
default = {
|
|
|
|
ubuntu = "ubuntu"
|
2015-06-01 05:43:52 +00:00
|
|
|
rhel6 = "ec2-user"
|
2015-06-01 05:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-12 00:09:51 +00:00
|
|
|
variable "ami" {
|
|
|
|
default = {
|
2015-06-01 05:26:50 +00:00
|
|
|
us-east-1-ubuntu = "ami-3acc7a52"
|
|
|
|
us-west-2-ubuntu = "ami-37501207"
|
2015-06-01 05:43:52 +00:00
|
|
|
us-east-1-rhel6 = "ami-b0fed2d8"
|
|
|
|
us-west-2-rhel6 = "ami-2faa861f"
|
2014-10-12 00:09:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "key_name" {
|
|
|
|
description = "SSH key name in your AWS account for AWS instances."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "key_path" {
|
|
|
|
description = "Path to the private key specified by key_name."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "region" {
|
|
|
|
default = "us-east-1"
|
|
|
|
description = "The region of AWS, for AMI lookups."
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "servers" {
|
|
|
|
default = "3"
|
|
|
|
description = "The number of Consul servers to launch."
|
|
|
|
}
|
2015-03-14 18:00:22 +00:00
|
|
|
|
|
|
|
variable "instance_type" {
|
2015-06-01 05:57:18 +00:00
|
|
|
default = {
|
|
|
|
ubuntu = "m1.small"
|
|
|
|
rhel6 = "m3.medium"
|
|
|
|
}
|
2015-05-09 20:50:11 +00:00
|
|
|
}
|
2015-05-31 18:00:57 +00:00
|
|
|
|
2015-05-09 20:50:11 +00:00
|
|
|
variable "tagName" {
|
|
|
|
default = "consul"
|
2015-05-13 13:59:05 +00:00
|
|
|
description = "Name tag for the servers"
|
2015-05-31 18:00:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "platform" {
|
|
|
|
default = "ubuntu"
|
|
|
|
description = "The OS Platform"
|
2015-05-21 00:38:42 +00:00
|
|
|
}
|