Problem Statement
What does the 'depends_on' argument do in Terraform?
Explanation
The 'depends_on' meta-argument is used when Terraform cannot automatically infer dependencies from code.
It explicitly defines the order in which resources should be created or destroyed. This ensures Terraform builds infrastructure in a safe and predictable manner, avoiding resource conflicts.
