From devops-data
Provides AWS cloud infrastructure patterns and best practices for EC2, Lambda, S3, RDS, ECS/EKS, including Well-Architected Framework, security, cost optimization, and Terraform IaC examples.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops-data:aws-cloudThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides AWS architecture patterns and best practices.
This skill provides AWS architecture patterns and best practices.
| Service | Use Case |
|---|---|
| EC2 | Virtual servers |
| Lambda | Serverless functions |
| S3 | Object storage |
| RDS | Managed databases |
| ECS/EKS | Container orchestration |
| CloudFront | CDN |
| Route 53 | DNS |
# VPC with public/private subnets
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
name = "my-vpc"
cidr = "10.0.0.0/16"
azs = ["us-east-1a", "us-east-1b"]
private_subnets = ["10.0.1.0/24", "10.0.2.0/24"]
public_subnets = ["10.0.101.0/24", "10.0.102.0/24"]
enable_nat_gateway = true
}
npx claudepluginhub jpoutrin/product-forge --plugin devops-dataGuides AWS development with infrastructure automation and cloud architecture patterns. Useful for IaC implementations, serverless designs, and scalable architectures.
Provides Terraform HCL snippets for AWS compute (ECS/Fargate, EKS, Lambda) and storage (S3) with security-first and production-ready patterns. Useful for infrastructure automation.
Provides deep AWS expertise for IAM policies, VPC networking, EKS/ECS/Lambda compute, RDS/DynamoDB/S3 storage, security hardening, monitoring, and multi-account production strategies.