Created
February 15, 2020 02:46
-
-
Save travis-g/0219a3d9a79b90f0bc06187a49096269 to your computer and use it in GitHub Desktop.
Boilerplate Terraform S3 backend code
This file contains 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
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