Skip to content

Instantly share code, notes, and snippets.

@egarbi
Created June 7, 2016 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egarbi/2eb3406ff9eac4543d510db040d3c908 to your computer and use it in GitHub Desktop.
Save egarbi/2eb3406ff9eac4543d510db040d3c908 to your computer and use it in GitHub Desktop.
My multienvironment Terraform variable file
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