terraform-cli
Installation
SKILL.md
Terraform CLI
Infrastructure as code tool. Define cloud resources in HCL, plan changes, and apply them safely.
- Official repo: https://github.com/hashicorp/terraform
- Docs: https://developer.hashicorp.com/terraform/cli
Core Workflow
terraform init # Initialize working directory, download providers
terraform plan # Preview changes
terraform apply # Apply changes (with confirmation)
terraform apply -auto-approve # Apply without confirmation
terraform destroy # Destroy all managed resources