Last active
March 18, 2018 21:55
-
-
Save santiagopoli/5b0a027912b036fad62de87c4985dcff to your computer and use it in GitHub Desktop.
Terraform Blue Green / Bootstrap
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
| 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