HashiCorp Terraform

HashiCorp Terraform is an Infrastructure as Code (IaC) tool to help you more reliably deploy and manage infrastructure deployments across one or more clouds, or even on-premise. As with all IaC tools, Terraform allows you to write code that is used to build, change, and version your infrastructure deployments in a reliable and efficient manner.

96 articles

Feb 15, 2023 5 min read

Terraform: GitHub Actions Automated Deployment

HashiCorp Terraform infrastructure deployments can always be run manual, but using GitHub Actions to implement Continuous Integration and Continuous Deployment (CI/CD) can be used to…

Feb 4, 2023 3 min read

Terraform Init Command Overview

HashiCorp Terraform is a powerful Infrastructure as Code (IaC) tool for managing resources both in the cloud and on-premises. The first command that you run…

Feb 3, 2023 16 min read

Terraform Configuration: Overview of HCL Syntax

HashiCorp Terraform is an open-source infrastructure as code (IaC) tool that enables organizations to manage, version, and automate the provisioning of their infrastructure. The purpose…

Jan 30, 2023 25 min read

Get Started with Terraform on Azure

One of the technologies that has come around through the DevOps movement of increased communication and cooperation between the Development and Operations teams has been Infrastructure as Code (IaC). These are technologies that DevOps Engineers and Site Reliability Engineers (SREs) have been adopting to build the latest technique of infrastructure automation in the cloud. Microsoft Azure natively supports ARM Templates for implementing IaC, but that's an Azure specific technology.

Jan 18, 2023 7 min read

Comparison: Terraform vs Azure Bicep

HashiCorp Terraform and Azure Bicep are both declarative Infrastructure as Code (IaC) tools for provisioning and managing infrastructure in the Microsoft Azure cloud. While they…

Jan 18, 2023 2 min read

Terraform: Destroy Infrastructure

There are reasons when specific infrastructure is no longer needed. When that infrastructure is managed trough HashiCorp Terraform, the terraform destroy command can be used…

Oct 19, 2022 5 min read

Terraform: Organize Locals / Local Values

Terraform local values (aka locals) enable the creation of expressions or values that can be easily referenced within the Terraform project or Terraform module. Using…

Aug 25, 2022 2 min read

Terraform: Get Azure Subscription Reference

When working with Terraform on Azure to manage resources, there are times when it’s necessary to get a reference to an Azure Subscription. This could…