Skip to content

Instantly share code, notes, and snippets.

@santiagopoli
Created March 19, 2018 15:47
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 santiagopoli/dd9be5e85c54d8a936ef5c249e9027b9 to your computer and use it in GitHub Desktop.
Save santiagopoli/dd9be5e85c54d8a936ef5c249e9027b9 to your computer and use it in GitHub Desktop.
Terraform Blue Green / Bootstrap V2
variable "infrastructure_version" {
default = "2"
}
provider "aws" {
region = "us-west-2"
}
terraform {
backend "s3" {
encrypt = true
bucket = "terraform-bluegreen"
region = "us-west-2"
key = "v2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment