Technology: Terraform

data codes through eyeglasses

How to use Data Source in Terraform?

Reading Time: 3 minutes In this blog, we will be learning about what is data source and how to use it in terraform. What is Data Source? Data source in terraform relates to resources but only it gives the information about an object rather than creating one. It provides dynamic information about the entities we define outside of terraform. Data Sources allow fetching data about the infrastructure components’ configuration. Continue Reading

person writing on the notebook

How to use modules in Terraform?

Reading Time: 3 minutes In this blog, we will learn about terraform modules with the help of an example. What are modules? Modules in terraform, allow using various resources together as a group. Also, these resources are reusable. They are available to use for other configurations as well. A module can be any configuration file with a (.tf) extension in the directory. Every module usually contains 3 files- main.tf Continue Reading