0 votes
in Terraform by
How can you define dependencies in Terraform?

1 Answer

0 votes
by

You can use depends_on to declare the dependency explicitly. You can also specify multiple resources in the depends on argument, and Terraform will create the target resource after all of them have been created.

...