
Answer-first summary for fast verification
Answer: Utilize a service to store API keys securely and provide application retrieval access., Store API keys in a managed service allowing application access for retrieval.
The correct answers are A and E. AWS Systems Manager Parameter Store (A) and AWS Secrets Manager (E) are both secure services for storing sensitive data such as API keys. They provide integrations that enable the application to retrieve these secrets securely at runtime. Using CloudFormation templates with base64 encoding (B) or environment variables (C) does not provide the same level of security. Embedding the API keys directly in the application (D) is not secure as it exposes the keys in the codebase.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A developer is creating a containerized application on AWS that requires secure API key management for third-party service communication. What are two secure methods to store and access these API keys within the application?
A
Utilize a service to store API keys securely and provide application retrieval access.
B
Encode API keys within CloudFormation templates and pass them via environment variables.
C
Integrate API keys into a CloudFormation template parameter for passing through environment variables.
D
Incorporate API keys directly into the application code and handle container image creation and upload.
E
Store API keys in a managed service allowing application access for retrieval.
No comments yet.