github.com/heimweh/terraform@v0.7.4/examples/consul/variables.tf (about)

     1  variable "aws_region" {
     2    description = "The AWS region to create resources in."
     3    default = "us-east-1"
     4  }
     5  
     6  # AMI's from http://cloud-images.ubuntu.com/locator/ec2/
     7  variable "aws_amis" {
     8    default = {
     9      eu-west-1 =  "ami-b1cf19c6"
    10      us-east-1 =  "ami-de7ab6b6"
    11      us-west-1 =  "ami-3f75767a"
    12      us-west-2 =  "ami-21f78e11"
    13    }
    14  }