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.
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