Last active
January 13, 2016 20:10
-
-
Save Jinkxed/67e15441e865e1682835 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "aws_region" { | |
description = "Where would you like to deploy to? Valid regions are: us-west-1, us-west-2, us-east-1" | |
} | |
variable "aws_region_defaults" { | |
default = { | |
us-west-1 = { | |
region_name = "California" | |
region_prefix = "CA" | |
ami_id = "ami-d5ea86b5" | |
cidr_block = "10.35.0.0/16" | |
cidr_prefix = "10.35" | |
az1 = "us-west-2a" | |
az2 = "us-west-2c" | |
} | |
us-west-2 = { | |
region_name = "Oregon" | |
region_prefix = "OR" | |
ami_id = "ami-f0091d91" | |
cidr_block = "10.25.0.0/16" | |
cidr_prefix = "10.25" | |
az1 = "us-west-2a" | |
az2 = "us-west-2c" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment