graph
Usage
Print a visual representation of the Terragrunt dependency graph in DOT language format.
This command analyzes your Terragrunt configuration and outputs a directed acyclic graph (DAG) showing the relationships and dependencies between your Terraform modules.
**Note:** This command is an alias for `list --format=dot`. Both commands produce identical output.
Examples
Graph all dependencies in the graph as a DotViz graph.
$ terragrunt dag graphdigraph { "alb" ; "ecs" ; "ecs" -> "alb";}Graph all dependencies in visual diagram.
$ terragrunt dag graph | dot -Tpng > graph.png