Backend S3
Here’s an example with the s3 backend.
config/terraform/backend.tf:
Notice the variable notation. Terraspace expands it out, substituting the values. The starter backend.tf
accounts for REGION
, ENV
, etc. Here’s an expanded example:
You can fully control the state file path by adjusting this. The string substitution also makes it clear what the state path looks like.
Why Is Env in Bucket Name?
By default, the bucket name has the ENV
at the end. This is done so we can easily see which environment the bucket stores Terraform statefiles for. This quickly helps with debugging. If you prefer not to have the ENV
at the end of the bucket name, remove it after generating the project with terraspace new project
.