pcasteran/terraform-graph-beautifier
Terraform graph beautifier
Terraform graph beautifier
Command line tool allowing to convert the barely usable output of the terraform graph command to something more
meaningful and explanatory.
terraform graph raw output |
Processed output |
|---|---|
![]() |
![]() |
Installation
You can download the binary corresponding to the required platform from
the release page.
You can also build the binary from the sources:
go install github.com/pcasteran/terraform-graph-beautifierFinally, you can also use
the Docker images
available for the Linux and Darwin operating systems:
# Linux
docker pull ghcr.io/pcasteran/terraform-graph-beautifier:latest-linux
# Darwin
docker pull ghcr.io/pcasteran/terraform-graph-beautifier:latest-darwinBasic usage
cd samples/config1/
terraform init
# Using the binary.
terraform graph | terraform-graph-beautifier \
--output-type=cyto-html \
> config1.html
# Using the Docker image.
terraform graph | docker run --rm -i \
--name terraform-graph-beautifier \
ghcr.io/pcasteran/terraform-graph-beautifier:latest-linux \
--output-type=cyto-html \
> config1.htmlInput and outputs
The command performs the following:
- Parsing of the Graphviz Dot script generated by
terraform graphfrom
the standard input or the specified file (--inputparameter). - Extraction of the graph containing the Terraform configuration elements and their dependencies.
- Generation of the result to the standard output or file (
--outputparameter). The following output
types (--output-typeparameter) are supported:- cyto-html (default): an HTML page using Cytoscape.js to render the graph (
see example); - cyto-json: a JSON document of the graph in the
Cytoscape.js format (see example); - graphviz: a cleaned and prettier Dot script that can be piped to a
Graphviz rendering command (see example).
- cyto-html (default): an HTML page using Cytoscape.js to render the graph (
Input graph loading and processing
The loading of the input graph involves the following steps:
- Cleaning the Dot script
- Renaming the nodes using a more consistent
pattern:[root] rsc_type.rsc_name=>module.root.rsc_type.rsc_name. - Using the
'character instead of"fot the maps keys:buckets["artefacts"]=>buckets['artefacts']. - Removing the nodes and edges generated by Terraform but not corresponding to configuration elements (aka TF
junk). This can be deactivated via the--keep-tf-junkparameter.
- Renaming the nodes using a more consistent
- Filtering
- Using user-provided pattern(s) to exclude some elements (resource, var, module, provider, ...) from the output.
- These patterns are Go regexp and are matched line by line against the output of
the cleaning step, so use the"root.rsc_type.rsc_name"naming convention. - These patterns are provided using the
--excludeparameter, you can repeat it multiple times.
Output configuration
Modules embedding
An important option is to choose whether to embed a submodule in its parent module or not. The --embed-modules
parameter allows to control this behavior:
- if true (default), the modules subgraphs will be embedded inside their parent;
- if false, all the subgraphs are drawn at the same level and an edge is drawn from a parent to its children.
As a rule of thumb, --embed-modules=true works well for small to medium size graphs but for larger ones it can produce
a very dense and compact result with a lot of overlapping nodes and intersecting edges.
| Output type | --embed-modules=true |
--embed-modules=false |
|---|---|---|
| cyto-html | ![]() |
![]() |
| graphviz | ![]() |
![]() |
HTML output templating
The command uses Go templates to create the HTML output.
The following annotations will be replaced during the output generation:
- {{.PageTitle}}: will be replaced by the graph name (see
--graph-nameparameter). - {{.GraphElementsJSON}}: will be replaced by the graph elements JSON object.
A basic template, with sensible default values for the graph rendering (style and layout), is provided and is embedded
in the binary.
If you want to customize the output, you can provide your own template and specify to use it with
the --cyto-html-template parameter.
It is good practice to check in your custom templates alongside your Terraform configuration.




