aws-secrets-manager
Installation
SKILL.md
AWS Secrets Manager
Manage application secrets.
List secrets
aws secretsmanager list-secrets --query 'SecretList[].{Name:Name,Description:Description,LastChanged:LastChangedDate,RotationEnabled:RotationEnabled}' --output table
Get secret value
aws secretsmanager get-secret-value --secret-id my-secret | jq '{Name: .Name, Value: .SecretString}'