Terraform

Terraform - Installation

Terraform - Concepts

Terraform uses Hashicorp Configuration Language (HCL) to express infrastructure

resource "aws_instance" "hello" {
  ami = "<ami-id>"
  instance_type = "t2.micro"
}

In this example, we are declaring a terraform resource of type “aws_instance” with name “hello”

Terraform - Introduction

Terraform has three main stages:

terraform init
terraform plan
terraform apply

Subpages

Terraform - Resources