Terraform Associate#
Terraform Associate (003) Exam
- Exam Content List - Terraform Associate (003) | Terraform | HashiCorp Developer
- Learning Path - Terraform Associate (003) | Terraform | HashiCorp Developer
- Sample Questions - Terraform Associate (003) | Terraform | HashiCorp Developer
Notes#
Graphviz can be used to visualize the terraform dependency graph.
i❯ terraform graph
digraph G {
rankdir = "RL";
node [shape = rect, fontname = "sans-serif"];
"aws_instance.example" [label="aws_instance.example"];
"aws_security_group.instance" [label="aws_security_group.instance"];
"aws_instance.example" -> "aws_security_group.instance";
}
Output is in a graph description language called DOT.
Review#
What are the 4 core values of the DevOps movement? * culture * automation * measurement * sharing Abbv. CAMS
How do I print a dependency graph with terraform?
terraform graph