Terraform 1. Run terraform init 2. Run terraform fmt 3. Run terraform plan 4. Run terraform apply or terraform apply -auto-approve 5. When prompted, review and enter the required "yes" or "no" via CLI Destroy all resources terraform destroy or terraform destroy -auto-approve Destroy specific resource terraform destroy -target { aws_instance.{instanceName} } EXAMPLE: terraform destroy -target aws_instance.myTerraformInstance