Skip to content

Introducing Terragrunt native support! Get the full functionality of Terragrunt commands ๐Ÿš€๐Ÿš€

Find out more โ†’

State managementยป

For those of you who don't want to manage Terraform state, Spacelift offers an optional sophisticated state backend synchronized with the rest of the application to maximize security and convenience. The ability to have Spacelift manage the state for you is only available during stack creation.

As you can see, it's also possible to import an existing Terraform state at this point, which is useful for users who want to upgrade their previous Terraform workflow.

Info

If you're using Spacelift to manage your stack, do not specify any Terraform backend whatsoever. The one-off config will be dynamically injected into every run and task.

Do. Or do not. There is no try.ยป

In this section we'd like to give you a few reasons why it could be useful to trust Spacelift to take care of your Terraform state. To keep things level, we'll also give you a reason not to.

Doยป

  1. It's super simple - just two clicks during stack setup. Otherwise there's nothing to set up on your end, so one fewer sensitive thing to worry about. Feel free to refer to how it works on our end, but overall we believe it to be a rather sensible and secure setup, at least on par with anything you could set up on your end.

  2. It's protected against accidental or malicious access. Again, you can refer to the more technical section on the inner workings of the state server, but the gist is that we're able to map state access and state changes to legitimate Spacelift runs, thus automatically blocking all other unauthorized traffic. As far as we know, no other backend is capable of that, which is one more reason to give us a go.

Don'tยป

  1. We'll let you in on a little secret now - behind the pixie dust it's still Amazon S3 all the way down, and at this stage we store all our data in Ireland. If you're not OK with that, you're better off managing the state on your end.

How it worksยป

S3, like half of the Internet. The pixie dust we're adding on top of it involves generating one-off credentials for every run and task and injecting them directly into the root of your Terraform project as a .tf file.

Warning

If you have some Terraform state backend already specified in your code, the initialization phase will keep failing until you remove it.

The state server is an HTTP endpoint implementing the Terraform standard state management protocol. Our backend always ensures that the credentials belong to one of the runs or tasks that are currently marked as active on our end, and their state indicates that they should be accessing or modifying the state. Once this is established, we just pass the request to S3 with the right parameters.

Importing resources into your Terraform Stateยป

So you have an existing resource that was created by other means and would like that resource to be reflected in your terraform state. This is an excellent use case for the terraform import command. When you're managing your own terraform state, you would typically run this command locally to import said resource(s) to your state file, but what do I do when I'm using Spacelift-managed state you might ask? Spacelift Task to the rescue!

To do this, use the following steps:

  • Select the Spacelift Stack to which you would like to import state for.
  • Within the navigation, select "Tasks"

  • Run the terraform import command needed to import your state file to the Spacelift-managed state by typing the command into the text input and clicking the perform button. Note: If you are using Terragrunt on Spacelift, you will need to run terragrunt import

  • Follow the status of your task's execution to ensure it was executed successfully. When completed, you should see an output similar to the following within the "Performing" step of your task.

Exporting Spacelift-managed Terraform state fileยป

Info

If you enable external state access, you can export the stack's state from outside of Spacelift.

If a Terraform stack's state is managed by Spacelift and you need to export it you can do so by running the following command in a Task:

1
terraform state pull > terraform.tfstate

The local workspace is discarded after the Task has finished so you most likely want to combine this command with another one that pushes the terraform.tfstate file to some remote location.

Here is an example of pushing the state file to an AWS S3 bucket (without using an intermediary file):

1
terraform state pull | aws s3 cp - s3://example-bucket/folder/sub-folder/terraform.tfstate