Skip to content

feat: document tg permit missing planfiles label #769

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions docs/vendors/terragrunt/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ Ensure this flag is included in your command to avoid run failures.
## Resource Deletion

Our Terragrunt support currently does not support resources being deleted during stack deletion, this includes through the Spacelift stack destructor or the "Delete Stack" option in the UI.

## Run-all with external dependencies

When a Spacelift stack configured with `run-all` points to a module that is not at the root of the Terragrunt module tree, execution may fail due to missing plan files from upstream dependencies.
This happens because Terragrunt expects to manage the full dependency graph starting from the root module, and cannot correctly resolve external dependencies from a partial context.
To work around this limitation, you can add the stack label `feature:terragrunt_permit_missing_planfiles`, which allows Terragrunt to skip missing plan file errors. Be aware that you may still see errors from `terraform plan` commands in the logs—these are expected and will not interrupt the workflow.