github.com/jdextraze/terraform@v0.6.17-0.20160511153921-e33847c8a8af/examples/aws-two-tier/variables.tf (about) 1 variable "public_key_path" { 2 description = <<DESCRIPTION 3 Path to the SSH public key to be used for authentication. 4 Ensure this keypair is added to your local SSH agent so provisioners can 5 connect. 6 7 Example: ~/.ssh/terraform.pub 8 DESCRIPTION 9 } 10 11 variable "key_name" { 12 description = "Desired name of AWS key pair" 13 } 14 15 variable "aws_region" { 16 description = "AWS region to launch servers." 17 default = "us-west-2" 18 } 19 20 # Ubuntu Precise 12.04 LTS (x64) 21 variable "aws_amis" { 22 default = { 23 eu-west-1 = "ami-b1cf19c6" 24 us-east-1 = "ami-de7ab6b6" 25 us-west-1 = "ami-3f75767a" 26 us-west-2 = "ami-21f78e11" 27 } 28 }