terraform/website/source/docs/commands/graph.html.markdown

52 lines
1.6 KiB
Markdown
Raw Normal View History

2014-07-25 00:44:10 +02:00
---
layout: "docs"
page_title: "Command: graph"
sidebar_current: "docs-commands-graph"
2014-10-22 05:21:56 +02:00
description: |-
The `terraform graph` command is used to generate a visual representation of either a configuration or execution plan. The output is in the DOT format, which can be used by GraphViz to generate charts.
2014-07-25 00:44:10 +02:00
---
# Command: graph
The `terraform graph` command is used to generate a visual
representation of either a configuration or execution plan.
The output is in the DOT format, which can be used by
2014-07-25 21:41:27 +02:00
[GraphViz](http://www.graphviz.org) to generate charts.
2014-07-25 00:44:10 +02:00
## Usage
Usage: `terraform graph [options] [DIR]`
2014-07-25 00:44:10 +02:00
Outputs the visual dependency graph of Terraform resources according to
configuration files in DIR (or the current directory if omitted).
The graph is outputted in DOT format. The typical program that can
read this format is GraphViz, but many web services are also available
to read this format.
Options:
* `-draw-cycles` - Highlight any cycles in the graph with colored edges.
This helps when diagnosing cycle errors.
* `-module-depth=n` - The maximum depth to expand modules. By default this is
-1, which will expand all modules.
2014-07-25 00:44:10 +02:00
* `-verbose` - Generate a verbose, "worst-case" graph, with all nodes
for potential operations in place.
2014-07-25 00:44:10 +02:00
## Generating Images
The output of `terraform graph` is in the DOT format, which can
easily be converted to an image by making use of `dot` provided
by GraphViz:
```
$ terraform graph | dot -Tpng > graph.png
```
Here is an example graph output:
2014-11-18 02:54:29 +01:00
![Graph Example](graph-example.png)
2014-07-25 00:44:10 +02:00