Skip to content

Instantly share code, notes, and snippets.

@travis-g
Created February 15, 2020 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travis-g/0219a3d9a79b90f0bc06187a49096269 to your computer and use it in GitHub Desktop.
Save travis-g/0219a3d9a79b90f0bc06187a49096269 to your computer and use it in GitHub Desktop.
Boilerplate Terraform S3 backend code
terraform {
backend "s3" {
bucket = ""
region = "us-east-1"
encrypt = true
acl = "private"
key = ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment