-
Notifications
You must be signed in to change notification settings - Fork 43
Update Pipelines overview to use modern Terragrunt commands #2795
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
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughDocumentation update clarifying Terragrunt run-all usage by splitting a single bullet into explicit subcommands (plan, apply, destroy). One line in the CI/CD section was removed and re-added without textual changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docs/2.0/docs/pipelines/concepts/overview.md(1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: ZachGoldberg
PR: gruntwork-io/docs#2663
File: docs/2.0/docs/pipelines/architecture/change-types.md:59-61
Timestamp: 2025-07-17T18:44:16.153Z
Learning: In current Terragrunt versions (2024-2025), the preferred command syntax is `terragrunt run --all` rather than the deprecated `terragrunt run-all` subcommand. The `run-all` command is still functional for backwards compatibility but is being phased out in favor of the `run --all` syntax.
📚 Learning: 2025-07-17T18:44:16.153Z
Learnt from: ZachGoldberg
PR: gruntwork-io/docs#2663
File: docs/2.0/docs/pipelines/architecture/change-types.md:59-61
Timestamp: 2025-07-17T18:44:16.153Z
Learning: In current Terragrunt versions (2024-2025), the preferred command syntax is `terragrunt run --all` rather than the deprecated `terragrunt run-all` subcommand. The `run-all` command is still functional for backwards compatibility but is being phased out in favor of the `run --all` syntax.
Applied to files:
docs/2.0/docs/pipelines/concepts/overview.md
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: Validate generated content
- GitHub Check: validate_build
| - `terragrunt plan` | ||
| - `terragrunt apply` | ||
| - `terragrunt destroy` | ||
| - `terragrunt run-all` | ||
| - `terragrunt run-all plan` | ||
| - `terragrunt run-all apply` | ||
| - `terragrunt run-all destroy` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update to the current terragrunt run --all syntax
The bullets still reference the deprecated run-all subcommand. To keep the docs aligned with modern Terragrunt usage, please switch these examples to terragrunt run --all plan|apply|destroy (matching the CLI evolution noted earlier).
Based on learnings
🤖 Prompt for AI Agents
In docs/2.0/docs/pipelines/concepts/overview.md around lines 17 to 22, the
examples use the deprecated terragrunt subcommand "run-all"; update the three
bullets that list "terragrunt run-all plan", "terragrunt run-all apply", and
"terragrunt run-all destroy" to the current syntax "terragrunt run --all plan",
"terragrunt run --all apply", and "terragrunt run --all destroy" (or a single
combined example shown as "terragrunt run --all plan|apply|destroy"), ensuring
spacing and hyphenation match the modern CLI form used elsewhere in the docs.
Summary by CodeRabbit