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 terragrunt links #675

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/vendors/terraform/terragrunt.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ On our runner image, we install a version of Terragrunt that will work with the

## Scope of support

We're currently using Terragrunt the same way we're using Terraform, running `init`, `plan`, and `apply` commands. This means we're not supporting [executing Terraform commands on multiple modules at once](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-modules-at-once/){: rel="nofollow"} (`run-all`). This functionality was designed to operate in a very different mode and environment, and is strictly outside our scope. However, run-all is supported in our new Terragrunt native platform in Spacelift which is currently in **beta**. You can find documentation on this [here](../terragrunt/README.md).
We're currently using Terragrunt the same way we're using Terraform, running `init`, `plan`, and `apply` commands. This means we're not supporting [executing Terraform commands on multiple modules at once](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-units-at-once/){: rel="nofollow"} (`run-all`). This functionality was designed to operate in a very different mode and environment, and is strictly outside our scope. However, run-all is supported in our new Terragrunt native platform in Spacelift which is currently in **beta**. You can find documentation on this [here](../terragrunt/README.md).

We also support authentication with [Spacelift modules](./module-registry.md) by automatically filling the `TG_TF_REGISTRY_TOKEN` environment variable for each run. Terragrunt [uses this variable](https://terragrunt.gruntwork.io/docs/reference/config-blocks-and-attributes/){: rel="nofollow"} to authenticate with private module registries.

Expand Down
2 changes: 1 addition & 1 deletion docs/vendors/terragrunt/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Details about all available Terragrunt-specific configuration optio

## Stack Settings

- **Use Run All** - If Spacelift should use Terragrunt's [run-all](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-modules-at-once/){: rel="nofollow"} functionality in this stack.
- **Use Run All** - If Spacelift should use Terragrunt's [run-all](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-units-at-once/#the-run-all-command){: rel="nofollow"} functionality in this stack.
- **Smart Sanitization** - If Spacelift should use [Smart Sanitization](../terraform/resource-sanitization.md#smart-sanitization) for the resources and outputs generated by this stack.
- **Terragrunt Version** - Which version or range of versions of Terragrunt should be used
- **Tool** - Whether to use OpenTofu, an open source version of Terraform, or a manually provisioned tool.
Expand Down
2 changes: 1 addition & 1 deletion docs/vendors/terragrunt/run-all.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Details about using run-all based Terragrunt stacks in spacelift.

## Introduction

Terragrunt's [run-all](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-modules-at-once/){: rel="nofollow"} feature allows you to deploy multiple modules at the same time. This very powerful feature allows you to develop large amounts of infrastructure as code with dependencies, mocked values, and while keeping things [DRY](https://terragrunt.gruntwork.io/docs/features/keep-your-terraform-code-dry/){: rel="nofollow"}.
Terragrunt's [run-all](https://terragrunt.gruntwork.io/docs/features/execute-terraform-commands-on-multiple-units-at-once/#the-run-all-command){: rel="nofollow"} feature allows you to deploy multiple modules at the same time. This very powerful feature allows you to develop large amounts of infrastructure as code with dependencies, mocked values, and while keeping things [DRY](https://terragrunt.gruntwork.io/docs/features/keep-your-terraform-code-dry/){: rel="nofollow"}.

## How to use run-all

Expand Down