Agent skill · Security

aws-secrets-rotation

Automate AWS secrets rotation for RDS, API keys, and credentials

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill aws-secrets-rotation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/security/aws-secrets-rotation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS Secrets Rotation Automate rotation of secrets, credentials, and API keys using AWS Secrets Manager and Lambda. ## When to Use Use this skill when you need to implement automated secrets rotation, manage credentials securely, or comply with security policies requiring regular key rotation. ## Supported Secret Types **AWS Services** - RDS database credentials - DocumentDB credentials - Redshift credentials - ElastiCache credentials **Third-Party Services** - API keys - OAuth tokens - SSH keys - Custom credentials ## Secrets Manager Setup ### Create a Secret ```bash # Create RDS secret aws secretsmanager create-secret \ --name prod/db/mysql \ --description "Production MySQL credentials" \ --secret-string '{ "username": "admin", "password": "CHANGE_ME", "engine": "mysql", "host": "mydb.cluster-abc.us-east-1.rds.amazonaws.com", "port": 3306, "dbname": "myapp" }' # Create API key secret aws secretsmanager create-secret \ --name prod/api/stripe \ --secret-string '{ "api_key": "sk_live_xxxxx", "webhook_secret": "whsec_xxxxx" }' # Create secret from file aws secretsmanager create-secret \ --name prod/ssh/private-key \ --secret-binary fileb://~/.ssh/id_rsa ``` ### Retrieve Secrets ```b

What's inside
Steps it walks through
  1. When to Use
  2. Supported Secret Types
  3. Secrets Manager Setup
  4. Create a Secret
  5. Retrieve Secrets
  6. Automatic Rotation Setup
  7. Enable RDS Rotation
  8. Lambda Rotation Function
  9. Custom Rotation for API Keys
  10. Rotation Monitoring
  11. CloudWatch Alarms
  12. Rotation Audit Script
  13. Application Integration
  14. Python SDK
Commands it runs
Create RDS secret
aws secretsmanager create-secret \
Create API key secret
Create secret from file
Get secret value
aws secretsmanager get-secret-value \
Get specific field
jq -r '.password'
Get binary secret
base64 -d > private-key.pem
More from agentic-awesome-skills
All skills →
About this skill
What does the aws-secrets-rotation skill do?

Automate AWS secrets rotation for RDS, API keys, and credentials

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill aws-secrets-rotation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going