Created
June 7, 2016 12:16
-
-
Save egarbi/2eb3406ff9eac4543d510db040d3c908 to your computer and use it in GitHub Desktop.
My multienvironment Terraform variable file
This file contains hidden or 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
ariable "region" { | |
default = "eu-west-1" | |
} | |
variable "itype" { | |
default = { | |
prod = "t2.medium" | |
testing = "t2.small" | |
} | |
} | |
variable "influx_itype" { | |
default = { | |
prod = "t2.medium" | |
testing = "t2.medium" | |
} | |
} | |
variable "zones" { | |
default = "a,b,c" | |
} | |
variable "ami" { | |
default = "ami-7abd0209" | |
} | |
variable "user" { | |
default = "centos" | |
} | |
variable "domain" { | |
default = { | |
prod = "example.com" | |
testing = "example.test" | |
} | |
} | |
...truncated file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment