github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/examples/aws-count/variables.tf (about)

     1  variable "aws_region" {
     2    description = "The AWS region to create things in."
     3    default = "us-west-2"
     4  }
     5  
     6  # Ubuntu Precise 12.04 LTS (x64)
     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  }