Built-in Dependency Management

Learn how built-in dependencies are managed in Terraform.

Resource graph

When Terraform is analyzing a configuration, it creates a resource graph that lists out all the resources in the configuration and their dependencies. This allows Terraform to create the physical resources in the proper order, and when possible, create resources in parallel if they aren’t ...