terraform
Installation
SKILL.md
Terraform Expert Engineer Skill
This skill provides a comprehensive guide for Terraform development.
1. Terraform CLI Basic Commands
1.1. Initialization and Planning
# Initialize workspace (download providers)
terraform init
# Initialize with backend config
terraform init -backend-config="bucket=my-terraform-state"
# Check execution plan
terraform plan
Related skills