SAA-C03 · Question #96
A company runs its databases on Amazon RDS for PostgreSQL. The company wants a secure solution to manage the master user password by rotating the password every 30 days. Which solution will meet these
The correct answer is C. Integrate AWS Secrets Manager with Amazon RDS for PostgreSQL to automate password. AWSSecrets Managercan integrate directly with Amazon RDS for automatic and seamless password rotation. Secrets Manager handles the complexity of password management, including generating strong passwords and rotating them at a defined interval (e.g., every 30 days). It also autom
Question
A company runs its databases on Amazon RDS for PostgreSQL. The company wants a secure solution to manage the master user password by rotating the password every 30 days. Which solution will meet these requirements with the LEAST operational overhead?
Options
- AUse Amazon EventBridge to schedule a custom AWS Lambda function to rotate the password
- BUse the modlfy-db-instance command in the AWS CLI to change the password.
- CIntegrate AWS Secrets Manager with Amazon RDS for PostgreSQL to automate password
- DIntegrate AWS Systems Manager Parameter Store with Amazon RDS for PostgreSQL to
How the community answered
(23 responses)- A4% (1)
- B17% (4)
- C70% (16)
- D9% (2)
Explanation
AWSSecrets Managercan integrate directly with Amazon RDS for automatic and seamless password rotation. Secrets Manager handles the complexity of password management, including generating strong passwords and rotating them at a defined interval (e.g., every 30 days). It also automatically updates the connection information for RDS, minimizing operational overhead. Option A (Lambda with EventBridge): While possible, this requires custom coding and operational management of Lambda, which introduces additional complexity. Option B (Manual password change): Using the modify-db-instance command requires manual intervention and is not automated, leading to more operational effort. Option D (Parameter Store): Systems Manager Parameter Store is less specialized for password management than Secrets Manager and does not have built-in automated rotation for RDS
Community Discussion
No community discussion yet for this question.