github.com/recobe182/terraform@v0.8.5-0.20170117231232-49ab22a935b7/examples/aws-eip/variables.tf (about) 1 variable "aws_region" { 2 description = "The AWS region to create things in." 3 default = "us-east-1" 4 } 5 6 # ubuntu-trusty-14.04 (x64) 7 variable "aws_amis" { 8 default = { 9 "us-east-1" = "ami-5f709f34" 10 "us-west-2" = "ami-7f675e4f" 11 } 12 } 13 14 variable "key_name" { 15 description = "Name of the SSH keypair to use in AWS." 16 }