github.com/2matz/terraform@v0.6.1-0.20150714181608-a03cbdb5d5bd/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  }
    17