Topic 1 Question 936
2 つ選択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?
Create HTTP security headers by using Lambda@Edge to retrieve and create sensitive information
Create a Lambda layer that retrieves sensitive information
Store sensitive information in AWS Secrets Manager
Store sensitive information in AWS Systems Manager Parameter Store
Create a Lambda consumer with dedicated throughput to retrieve sensitive information and create environmental variables
ユーザの投票
コメント(7)
D doesn't provide automatic rotation
Answer will be B and C
👍 8pujithacg82024/08/10- 正解だと思う選択肢: BC
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. B. Create a Lambda layer that retrieves sensitive information.
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.
👍 8[Removed]2024/08/20 - 正解だと思う選択肢: BC
A - Lambda@Edge is primarily used for managing HTTP request/response behavior in a CDN environment with Amazon CloudFront. It is not designed for securely storing or rotating sensitive information. B - By creating a layer that securely retrieves sensitive information (for example, from AWS Secrets Manager), we will reduce duplication and operational overhead. The layer can also handle the logic for retrieving updated information if needed. C - Automatic rotation is managed. D - Automatic rotation is NOT managed. E - Setting environment variables dynamically at runtime is not an efficient or scalable practice for "thousands of Lambda functions". Too much operational overhead.
👍 3LeonSauveterre2025/01/04
シャッフルモード