github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/examples/aws-two-tier/variables.tf (about) 1 variable "key_name" { 2 description = "Name of the SSH keypair to use in AWS." 3 } 4 5 variable "key_path" { 6 description = "Path to the private portion of the SSH key specified." 7 } 8 9 variable "aws_region" { 10 description = "AWS region to launch servers." 11 default = "us-west-2" 12 } 13 14 # Ubuntu Precise 12.04 LTS (x64) 15 variable "aws_amis" { 16 default = { 17 eu-west-1 = "ami-b1cf19c6" 18 us-east-1 = "ami-de7ab6b6" 19 us-west-1 = "ami-3f75767a" 20 us-west-2 = "ami-21f78e11" 21 } 22 }