Created
April 10, 2018 11:23
-
-
Save li0nel/888ff05035acb36d685853985e3c7ecd to your computer and use it in GitHub Desktop.
terraform S3 backend
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
terraform { | |
backend "s3" { | |
# Make sure to use your own bucket name here | |
bucket = "laravelaws-tf-state" | |
key = "main.tfstate" | |
region = "eu-west-2" | |
profile = "default" | |
workspace_key_prefix = "workspaces" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment