Skip to content

Terraform

Declarative Infrastructure as Code.

Terraform
1
2
3
4
5
6
7
provider "aws" {
  region = "us-east-1"
}

resource "aws_s3_bucket" "static" {
  bucket = "my-static-site-123"
}
Bash
1
2
3
terraform init
terraform plan
terraform apply