aws-rds

Solid

Provision and manage RDS databases. Configure backups, replication, and security. Use when deploying managed relational databases on AWS.

DevOps & Infrastructure 28 stars 4 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
49
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# AWS RDS Deploy and manage Amazon RDS relational databases with production-grade backups, replication, monitoring, and security. ## When to Use This Skill - Provisioning a managed PostgreSQL, MySQL, MariaDB, Oracle, or SQL Server database - Setting up Multi-AZ deployments for high availability - Creating read replicas for horizontal read scaling - Configuring automated backups, snapshots, and point-in-time recovery - Tuning database parameters for performance - Migrating from self-managed databases to RDS - Monitoring database performance and setting up alarms ## Prerequisites - AWS CLI v2 installed and configured - IAM permissions: `rds:*`, `ec2:DescribeSecurityGroups`, `ec2:DescribeSubnets`, `kms:*`, `cloudwatch:*` - A VPC with at least two subnets in different AZs (for subnet group) - Security group allowing database port access from application subnets only ## Create a DB Subnet Group ```bash # Create a subnet group spanning two AZs aws rds create-db-subnet-group \ --db-subnet-group-name production-db-subnets \ --db-subnet-group-description "Production database subnets" \ --subnet-ids subnet-private-a subnet-private-b # List subnet groups aws rds describe-db-subnet-groups \ --query "DBSubnetGroups[].{Name:DBSubnetGroupName,VPC:VpcId,Status:SubnetGroupStatus}" \ --output table ``` ## Create a Production Database ```bash # Create a PostgreSQL 16 Multi-AZ instance aws rds create-db-instance \ --db-instance-identifier production-api-db \ --db-instance...

Details

Author
BagelHole
Repository
BagelHole/DevOps-Security-Agent-Skills
Created
3 months ago
Last Updated
3 days ago
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

aws-agentic-ai

AWS Bedrock AgentCore comprehensive expert for deploying and managing all AgentCore services. Use when working with Gateway, Runtime, Memory, Identity, or any AgentCore component. Covers MCP target deployment, credential management, schema optimization, runtime configuration, memory management, and identity services.

290 Updated 1 months ago
zxkane
DevOps & Infrastructure Featured

aws-cdk-development

AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically. Covers CDK app structure, construct patterns, stack composition, and deployment workflows.

290 Updated 1 months ago
zxkane
Web & Frontend Solid

administering-linux

Manage Linux systems covering systemd services, process management, filesystems, networking, performance tuning, and troubleshooting. Use when deploying applications, optimizing server performance, diagnosing production issues, or managing users and security on Linux servers.

367 Updated 5 months ago
ancoleman
AI & Automation Featured

kubernetes

Kubernetes workflow skill. Use this skill when a user needs workload manifests, rollout strategy, service exposure, or cluster operations guidance.

50 Updated 2 days ago
diegosouzapw
Web & Frontend Solid

secure-linux-web-hosting

Use when setting up, hardening, or reviewing a cloud server for self-hosting, including DNS, SSH, firewalls, Nginx, static-site hosting, reverse-proxying an app, HTTPS with Let's Encrypt or ACME clients, safe HTTP-to-HTTPS redirects, or optional post-launch network tuning such as BBR.

56 Updated 1 months ago
xixu-me