Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a typo in state-management.md #666

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/vendors/terraform/state-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ root of your Terraform project as a `.tf` file.
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](https://www.terraform.io/docs/backends/types/http.html){: rel="
nofollow"}. Our backend always ensures that the credentials belong to one of the runs or tasks that are currently marked
Terraform [standard state management protocol](https://www.terraform.io/docs/backends/types/http.html){: rel="nofollow"}.
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.

Expand Down Expand Up @@ -103,8 +103,8 @@ After rollback completes successfully, a new version of your state will appear a
## 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](https://www.terraform.io/cli/import){: rel="
nofollow"} command. When you're managing your own terraform state, you would typically run this command locally to
terraform state. This is an excellent use case for the [terraform import](https://www.terraform.io/cli/import){: rel="nofollow"}
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](../../concepts/run/task.md) to the rescue!

Expand Down
Loading