From aj-geddes-useful-ai-prompts-4
Deploy and manage relational databases on AWS RDS with Multi-AZ, read replicas, backups, and encryption. Supports PostgreSQL, MySQL, MariaDB, and Oracle.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:aws-rds-databaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Amazon RDS simplifies relational database deployment and operations. Support multiple database engines with automated backups, replication, encryption, and high availability through Multi-AZ deployments.
Minimal working example:
# Create DB subnet group
aws rds create-db-subnet-group \
--db-subnet-group-name app-db-subnet \
--db-subnet-group-description "App database subnet" \
--subnet-ids subnet-12345 subnet-67890
# Create security group for RDS
aws ec2 create-security-group \
--group-name rds-sg \
--description "RDS security group" \
--vpc-id vpc-12345
# Allow inbound PostgreSQL
aws ec2 authorize-security-group-ingress \
--group-id sg-rds123 \
--protocol tcp \
--port 5432 \
--source-security-group-id sg-app123
# Create RDS instance
aws rds create-db-instance \
--db-instance-identifier myapp-db \
--db-instance-class db.t3.micro \
--engine postgres \
--engine-version 15.2 \
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| RDS Instance Creation with AWS CLI | RDS Instance Creation with AWS CLI |
| Terraform RDS Configuration | Terraform RDS Configuration |
| Database Connection and Configuration | Database Connection and Configuration |
npx claudepluginhub aj-geddes/useful-ai-promptsManages AWS RDS relational databases: provisioning, backups, replicas, connectivity troubleshooting, and performance optimization.
Configures production-grade Amazon RDS PostgreSQL instances with sizing, Multi-AZ deployments, read replicas, backups, parameter groups, performance insights, and security hardening.
Selects, configures, and operates Amazon RDS and Aurora databases covering engine choice, high availability, read replicas, Multi-AZ, Serverless v2, security, migration, and blue/green deployments.