Skip to content

Instantly share code, notes, and snippets.

@li0nel
Created April 10, 2018 11:23
Show Gist options
  • Save li0nel/888ff05035acb36d685853985e3c7ecd to your computer and use it in GitHub Desktop.
Save li0nel/888ff05035acb36d685853985e3c7ecd to your computer and use it in GitHub Desktop.
terraform S3 backend
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