terraform
Installation
SKILL.md
When to use this skill
Use this skill whenever the user wants to:
- 编写或调试 Terraform 配置文件(
.tf) - 管理云基础设施(AWS、Azure、GCP、阿里云等)
- 配置 Terraform providers、resources、data sources
- 管理 Terraform state、modules、workspaces
How to use this skill
- 配置文件:HCL 语法定义 provider、resource、variable、output、module。
- 工作流:
terraform init→terraform plan→terraform apply→terraform destroy。 - State 管理:本地或远程( S3 + DynamoDB、Azure Blob、阿里云 OSS 等)。
- Modules:复用基础设施模板,版本化管理。