Skip to content

Instantly share code, notes, and snippets.

@dejanvasic85
Created April 1, 2018 02:30
Show Gist options
  • Select an option

  • Save dejanvasic85/f811e6f754c398f62cce94b96f0cb3d0 to your computer and use it in GitHub Desktop.

Select an option

Save dejanvasic85/f811e6f754c398f62cce94b96f0cb3d0 to your computer and use it in GitHub Desktop.
Terraform back end config
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