Skip to content

Terraform

Where It Is Used

Terraform describes cloud and infrastructure configuration declaratively through HCL.

Core Workflow

terraform init
terraform fmt -recursive
terraform validate
terraform plan
terraform apply
terraform destroy

What Matters

  • provider
  • resource
  • data source
  • module
  • state
  • backend

See Also