Is Secrets Manager free?
No free tier. $0.40 per secret per month plus $0.05 per 10,000 API calls. Can add up with many secrets but generally affordable.
What is AWS Secrets Manager?
Secrets Manager stores and retrieves secrets like database credentials and API keys. Automatic rotation, encryption, and fine-grained access control.
Secrets Manager vs Parameter Store?
Parameter Store is cheaper (free tier) for simple config. Secrets Manager has automatic rotation and is designed for secrets. Use Secrets Manager for credentials.
How does secret rotation work?
Secrets Manager can automatically rotate secrets on a schedule. Built-in rotation for RDS and some services. Custom Lambda functions for other systems.
How do applications access secrets?
SDK call to retrieve secret at runtime. IAM policies control access. Can cache secrets in memory. Better than env vars or config files.