2015-06-09 22:12:33 +02:00
|
|
|
variable "key_name" {
|
2015-08-31 10:19:02 +02:00
|
|
|
description = "Name of the SSH keypair to use in AWS."
|
2015-06-09 22:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "aws_region" {
|
2015-08-31 10:19:02 +02:00
|
|
|
description = "AWS region to launch servers."
|
|
|
|
default = "us-east-1"
|
2015-06-09 22:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# ubuntu-trusty-14.04 (x64)
|
|
|
|
variable "aws_amis" {
|
2015-08-31 10:19:02 +02:00
|
|
|
default = {
|
|
|
|
"us-east-1" = "ami-5f709f34"
|
|
|
|
"us-west-2" = "ami-7f675e4f"
|
|
|
|
}
|
2015-06-09 22:12:33 +02:00
|
|
|
}
|
|
|
|
|