You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Step-02: Run Terraform Graph command
# Terraform Initialize
terraform init
# Terraform Graph
terraform graph > dot1
Observation:
This command will output DOT format text and store in file dot1