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
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.
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.
Let’s walk through some basic usage examples to illustrate how Terraform works.
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.
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.
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.
To start using Terraform, follow these steps:
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.