Dictionary variables
-
Introduction to configuration management – Infrastructure as Code (IaC) with Terraform-1
CM, in the realm of technology and systems administration, can be compared to the role of a conductor leading an orchestra. Imagine yourself guiding a group of musicians, each playing…
-
Viewing the current state – Infrastructure as Code (IaC) with Terraform
To view the current state, we can run the following command:$ terraform show That will output all resources that Terraform has created and manages, including outputs. Of course, this can…
-
Inspecting resources – Infrastructure as Code (IaC) with Terraform
Let’s use the az command to list the resource groups. As we know, our resource groups have a resource group prefix of terraform-ws. Therefore, use the following command to list…
-
Terraform workspaces – Infrastructure as Code (IaC) with Terraform-2
To access the name of the workspace, Terraform provides the terraform.workspace variable, which we have used to define the resource_group name. So, the template is now ready to take configuration…
-
Terraform workspaces – Infrastructure as Code (IaC) with Terraform-1
Software development requires multiple environments. You develop software within your workspace, deploy it into the development environment, unit test it, and then promote the tested code to a test environment.…