github.com/leeprovoost/terraform@v0.6.10-0.20160119085442-96f3f76118e7/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 } 17