If you are working intensely with terraform, you guessed it right. Terraform rolled up with Module Dependencies in Terraform 0.13 ๐Ÿ‘๐Ÿ‘๐Ÿ‘

For those who are still wondering what module dependencies are โ€” Its similar to the resource dependency. Similarly, terraform in its latest version (i.e. 0.13) has released depends_on argument on modules to create dependencies among the module.

In this example, we are creating a bucket on GCP, for that, we have created a module where we are passing the name of the bucket, respective storage classes, locations, and Project.

Related Articles