Terraform

Terraform Workspaces

Terraform Workspaces

Hello BitsLovers! This article will talk about Terraform Workspaces. Our terraform workspace tutorial will cover how to use it and when to use it. Also, provide a guide on which commands we can use. What is terraform workspace? We learned what terraform state is in our previous article—also, that one state stores one environment, like Production, Dev, …

Terraform Workspaces Read More »

Terraform State

Terraform State [Complete Guide]

Terraform must hold state regarding your infrastructure and configuration. This state is operated by Terraform to map real resources in the cloud (already deployed) to your configuration, also keep track of metadata, and enhance performance for extensive infrastructures. Also, check our article about Terraform Workspace. Terraform State File Where is Terraform State Stored? The Terraform …

Terraform State [Complete Guide] Read More »

Terraform Count

Terraform Count [Save your time by using it]

Terraform is excellent for describing your environment using code. However, copying and pasting the exact resource representation can be dull if you build multiple resources. Fortunately, Terraform gives two ways to handle similar resources for each and count. Later, you will be able to use it on Dynamic Block. A module is known as a block of re-usable …

Terraform Count [Save your time by using it] Read More »

Terraform Output

Terraform Output – What you should know

In this post, you’ll learn how to create Terraform outputs. Terraform is a powerful and valuable tool to deploy and operate infrastructure in your environment. However, with so many providers and modules, there isn’t much Terraform can’t do. Terraform’s colossal draw is how you can create resources in various environments by applying the same configuration. …

Terraform Output – What you should know Read More »

Terraform Locals

Terraform Locals

Terraform is not just another open-source infrastructure as a code software tool. Users determine and implement data center infrastructure applying a declarative code language, HashiCorp Code Language, or optionally JSON. So, it allows us to create code. We can create variables to facilitate the design of a dynamic solution with complex scenarios and data. And …

Terraform Locals Read More »