cloudformation
Installation
SKILL.md
When to use this skill
Use this skill whenever the user wants to:
- 编写或调试 CloudFormation 模板(YAML/JSON)
- 创建和管理 AWS 资源(EC2、S3、RDS、Lambda 等)
- 配置 CloudFormation stacks、nested stacks、stack sets
- 使用 CloudFormation 最佳实践实现基础设施自动化
How to use this skill
- 模板结构:AWSTemplateFormatVersion、Description、Parameters、Resources、Outputs。
- 工作流:创建堆栈 → 更新堆栈 → 删除堆栈;使用变更集预览变更。
- 嵌套堆栈:将重复使用的资源封装为 nested stack,提高复用性。
- Cross-stack references:通过 Export/Import-Value 在堆栈间共享资源。