Created
April 1, 2018 02:30
-
-
Save dejanvasic85/f811e6f754c398f62cce94b96f0cb3d0 to your computer and use it in GitHub Desktop.
Terraform back end config
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
| provider "aws" { | |
| region = "${var.aws_region}" | |
| max_retries = 21 | |
| } | |
| terraform { | |
| backend "s3" { | |
| key = "terraform.tfstate" # This is overriden by the backend-config flag when calling deploy.sh | |
| region = "us-east-1" # Todo - i'm not sure where this can come through as a variable | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment