Which TWO AWS services can be used to centrally manage database credentials and automate rotation for Amazon RDS? (Choose two.)
AWS Secrets Manager can store and automatically rotate RDS credentials.
Why this answer
Options A and D are correct. AWS Secrets Manager provides native automated rotation for RDS credentials, while AWS Systems Manager Parameter Store (SecureString) can centrally store encrypted credentials and support automated rotation when combined with a custom AWS Lambda function. Both services allow centralized management of database credentials, and with additional configuration, both can automate rotation.
Option B (AWS KMS) is incorrect because KMS manages encryption keys, not secrets. Option C (IAM database authentication) is incorrect because it eliminates the need for stored credentials but does not centrally manage or rotate them. Option E (AWS CloudHSM) is incorrect because it provides hardware security modules for key storage, not secret management.
Exam trap
A common trap is assuming only AWS Secrets Manager can support automated rotation. However, AWS Systems Manager Parameter Store can also achieve rotation through custom automation (e.g., Lambda), making it a valid answer for this question.