Cheatsheets

Personal collection of cheatsheets.

Terraform

Terraform is an infrastructure-as-code (IaC) software tool created by HashiCorp.

Index

Install

HashiCorp distributes Terraform as a binary package.

Usage

Check version.

terraform version

Initialize a working directory.

terraform init

Rewrite configuration files to a canonical format and style.

terraform fmt

Validate the configuration files without accessing any remote service.

terraform validate

Create an execution plan to preview changes in the infrastructure.

terraform plan

Execute the actions proposed in a plan.

terraform apply

Destroy all remote resources of a plan.

terraform destroy