docs/src/content/docs/09-terragrunt-scale/04-pipelines.mdx
import { Aside } from '@astrojs/starlight/components';
Pipelines is the CI/CD component of Terragrunt Scale. It automates terragrunt plan and terragrunt apply in your pull request workflow, with features designed to leverage Terragrunt's dependency graph.
When you open a pull request with infrastructure changes:
terragrunt plan for only the affected units, minimizing blast radius.terragrunt apply runs in dependency order, respecting your DAG.All execution happens in your own CI/CD runners (GitHub Actions or GitLab CI). Pipelines never has direct access to your cloud accounts.
Pipelines has native support for the complete Terragrunt lifecycle:
terragrunt plan / terragrunt apply / terragrunt destroyterragrunt run --all for stack-wide operationsFor architecture details, configuration reference, and tutorials, see the Gruntwork Pipelines documentation.
</Aside>