Terraform 101: A Beginner's Guide to Infrastructure as Code


Infrastructure as Code (IaC) is revolutionizing the way we manage and provision infrastructure. One of the leading tools in this space is Terraform. In this guide, we'll introduce you to Terraform and provide usage examples to help you get started.

Published on April 21, 2024 by Artem Chekunov

terraform IaC 101

3 min READ

What is Terraform?

Terraform is an open-source infrastructure as code software tool created by HashiCorp. It allows users to define and provision data center infrastructure using a declarative configuration language known as HashiCorp Configuration Language (HCL). With Terraform, you can manage resources from various cloud providers, such as AWS, Azure, Google Cloud Platform, and others.

Key Concepts

Before diving into examples, let’s familiarize ourselves with some key concepts in Terraform:

  • Providers: Providers are responsible for understanding API interactions and exposing resources. Each provider offers a set of resources (e.g., virtual machines, databases) that can be managed by Terraform.

  • Resources: Resources are the building blocks of your infrastructure. They represent the components that Terraform manages, such as virtual machines, networks, databases, and more.

  • Modules: Modules are reusable configurations that encapsulate a set of resources and can be used across multiple Terraform configurations. They promote code reuse and maintainability.

  • State: Terraform keeps track of the infrastructure it manages in a state file. This file is used to map real-world resources to your configuration and track metadata.

Usage Examples

Let’s walk through some basic usage examples to illustrate how Terraform works.

Example 1: Provisioning an AWS EC2 Instance

provider "aws" {
  region = "us-west-2"
}

resource "aws_instance" "example" {
  ami           = "ami-0c55b159cbfafe1f0"
  instance_type = "t2.micro"
}

In this example, we’re using the AWS provider to specify the region, and we’re creating an EC2 instance with a specific AMI and instance type.

Example 2: Creating a Virtual Network in Azure

provider "azurerm" {
  features {}
}

resource "azurerm_virtual_network" "example" {
  name                = "example-network"
  address_space       = ["10.0.0.0/16"]
  location            = "West US"
  resource_group_name = azurerm_resource_group.example.name
}

Here, we’re using the Azure provider to define a virtual network with a specified address space and location.

Example 3: Deploying a Google Cloud Compute Instance

provider "google" {
  project = "your-project-id"
  region  = "us-central1"
}

resource "google_compute_instance" "example" {
  name         = "example-instance"
  machine_type = "n1-standard-1"
  zone         = "us-central1-a"

  boot_disk {
    initialize_params {
      image = "debian-cloud/debian-10"
    }
  }

  network_interface {
    network = "default"
    access_config {}
  }
}

In this example, we’re using the Google Cloud provider to deploy a Compute Engine instance with a specified machine type and boot disk.

Getting Started

To start using Terraform, follow these steps:

  1. Install Terraform: Download and install Terraform from the official website or use a package manager like Homebrew.
  2. Write Terraform Configuration: Create a .tf file containing your infrastructure configuration using HCL syntax.
  3. Initialize Terraform: Run terraform init in your project directory to initialize Terraform and download necessary providers.
  4. Preview Changes: Use terraform plan to see what changes Terraform will make to your infrastructure.
  5. Apply Changes: Apply the changes by running terraform apply. Terraform will create, update, or delete resources as needed based on your configuration.
  6. Destroy Infrastructure: When you’re done, you can destroy the provisioned infrastructure using terraform destroy.

Conclusion

Terraform simplifies infrastructure management by providing a declarative approach to provisioning and managing resources across various cloud providers. By understanding the key concepts and following usage examples, you can start leveraging Terraform to automate your infrastructure deployments effectively.