Skip to content

Instantly share code, notes, and snippets.

@santiagopoli
Last active March 18, 2018 21:55
Show Gist options
  • Select an option

  • Save santiagopoli/5b0a027912b036fad62de87c4985dcff to your computer and use it in GitHub Desktop.

Select an option

Save santiagopoli/5b0a027912b036fad62de87c4985dcff to your computer and use it in GitHub Desktop.
Terraform Blue Green / Bootstrap
variable "infrastructure_version" {
default = "1"
}
provider "aws" {
region = "us-west-2"
}
terraform {
backend "s3" {
encrypt = true
bucket = "terraform-bluegreen"
region = "us-west-2"
key = "v1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment