SAA-C03 · Question #590
A company runs thousands of AWS Lambda functions. The company needs a solution to securely store sensitive information that all the Lambda functions use. The solution must also manage the automatic…
The correct answer is B. Create a Lambda layer that retrieves sensitive information C. Store sensitive information in AWS Secrets Manager. AWS Secrets Manager securely stores sensitive information and provides automatic rotation of secrets, reducing the need for manual management. Using a Lambda layer allows multiple Lambda functions to access the sensitive information stored in Secrets Manager without needing to…
Question
A company runs thousands of AWS Lambda functions. The company needs a solution to securely store sensitive information that all the Lambda functions use. The solution must also manage the automatic rotation of the sensitive information. Which combination of steps will meet these requirements with the LEAST operational overhead? (Choose two.)
Options
- ACreate HTTP security headers by using Lambda@Edge to retrieve and create sensitive
- BCreate a Lambda layer that retrieves sensitive information
- CStore sensitive information in AWS Secrets Manager
- DStore sensitive information in AWS Systems Manager Parameter Store
- ECreate a Lambda consumer with dedicated throughput to retrieve sensitive information and create
How the community answered
(23 responses)- A13% (3)
- B61% (14)
- D22% (5)
- E4% (1)
Explanation
AWS Secrets Manager securely stores sensitive information and provides automatic rotation of secrets, reducing the need for manual management. Using a Lambda layer allows multiple Lambda functions to access the sensitive information stored in Secrets Manager without needing to duplicate retrieval logic in each function. This approach centralizes the retrieval process and reduces operational complexity.
Community Discussion
No community discussion yet for this question.