terraform

Installation
SKILL.md

Terraform

Infrastructure as Code with Terraform.

Core Workflow

# Initialize (download providers)
terraform init

# Preview changes
terraform plan
terraform plan -out=tfplan          # Save plan

# Apply changes
terraform apply
terraform apply tfplan              # Apply saved plan
terraform apply -auto-approve       # Skip confirmation
Installs
14
GitHub Stars
3
First Seen
Feb 21, 2026
terraform — 1mangesh1/dev-skills-collection