github.com/bengesoff/terraform@v0.3.1-0.20141018223233-b25a53629922/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  }