How to implement DRY principles in terraform with modules

DRY principles are crucial for your codebase’s scalability in any situation. If you frequently create the same components in Terraform, this blog is for you. DRY is an acronym that stands for Don’t Repeat Yourself. That is, if your code accomplishes the same objective, you should not repeat it. For example, if you construct a… Continue reading How to implement DRY principles in terraform with modules

How to make the block dynamic in terraform

In this blog, we will discuss about the dynamic block. Which is like more advanced version of looping available in terraform. It is better to have a knowledge of count, conditionals ,for_each and object data type before reading this blog. First of all, understand the basic usage of dynamic blocks. The basic use case is… Continue reading How to make the block dynamic in terraform