Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 368 Bytes

terraform.md

File metadata and controls

15 lines (12 loc) · 368 Bytes

Terraform

From the terraform tutorial

Create a .tf file:

terraform init # downloads providers but not much else
terraform fmt # like go fmt
terraform validate # syntax check
terraform apply # the REAL WORK
terraform show # shows what you've created
terraform destroy # blows it all away