Created
March 19, 2018 15:47
-
-
Save santiagopoli/dd9be5e85c54d8a936ef5c249e9027b9 to your computer and use it in GitHub Desktop.
Terraform Blue Green / Bootstrap V2
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 = "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