github.com/recobe182/terraform@v0.8.5-0.20170117231232-49ab22a935b7/examples/aws-elb/variables.tf (about)

     1  variable "key_name" {
     2    description = "Name of the SSH keypair to use in AWS."
     3  }
     4  
     5  variable "aws_region" {
     6    description = "AWS region to launch servers."
     7    default     = "us-east-1"
     8  }
     9  
    10  # ubuntu-trusty-14.04 (x64)
    11  variable "aws_amis" {
    12    default = {
    13      "us-east-1" = "ami-5f709f34"
    14      "us-west-2" = "ami-7f675e4f"
    15    }
    16  }