Explicit Resource Dependencies
Learn to manage explicit resource dependencies in Terraform.
We'll cover the following...
Explicit dependency
We created a resource that Terraform knew was dependent on another (the VPC subnet) in implicit dependencies. It was dependent because the logic within the provider
code knows that.
But what about dependencies that are not part of the structure of resources themselves but part of the logic of our application?
For example, we might have a dependency in our ...