terraform/examples/aws-elb/variables.tf

17 lines
321 B
Terraform
Raw Normal View History

2015-06-09 22:12:33 +02:00
variable "key_name" {
description = "Name of the SSH keypair to use in AWS."
2015-06-09 22:12:33 +02:00
}
variable "aws_region" {
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" {
default = {
"us-east-1" = "ami-5f709f34"
"us-west-2" = "ami-7f675e4f"
}
2015-06-09 22:12:33 +02:00
}