AWS
SKILL.md
AWS Skill
Best Practices
- IAM: Principle of Least Privilege. Never use root account. Create Roles for services.
- Infrastructure as Code: Managing resources via Terraform/CloudFormation, not the Console.
- Security Groups: Allow only necessary ports/IPs.
0.0.0.0/0is a red flag on SSH/RDP. - Cost: Use Budgets and Alarms to prevent bill shock.
Common Pitfalls
- Public Buckets: S3 buckets configured as public by mistake while containing sensitive data.
- Secrets: Hardcoding Access Keys in code. Use IAM Roles (EC2/Lambda) or Secrets Manager.