github.com/tkak/terraform@v0.5.4-0.20150712180941-7f738dc27225/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