aws-infrastructure-as-code
Installation
SKILL.md
AWS Infrastructure as Code
Key Tools
- search_cdk_documentation / search_cdk_samples_and_constructs - CDK docs and code samples
- cdk_best_practices - Comprehensive CDK best practices
- read_iac_documentation_page - Full documentation pages
- validate_cloudformation_template - cfn-lint validation
- check_cloudformation_template_compliance - cfn-guard security compliance
- troubleshoot_cloudformation_deployment - Pattern-based failure analysis with CloudTrail
- search_cloudformation_documentation - CloudFormation docs
CDK Development Workflow
- Research: search_cdk_documentation + search_cdk_samples_and_constructs
- Best Practices: cdk_best_practices
- Write CDK Code
- Synthesize:
cdk synth - Validate: validate_cloudformation_template + check_cloudformation_template_compliance
- Deploy:
cdk deploy - Troubleshoot: troubleshoot_cloudformation_deployment (if needed)