A company has an application that uses different APIs to generate embeddings for input text. The company needs to implement a solution to automatically rotate the API tokens every 3 months.
Which solution will meet this requirement?
A.
Store the tokens in AWS Secrets Manager. Create an AWS Lambda function to perform the rotation.
B.
Store the tokens in AWS Systems Manager Parameter Store. Create an AWS Lambda function to perform the rotation.
C.
Store the tokens in AWS Key Management Service (AWS KMS). Use an AWS managed key to perform the rotation.
D.
Store the tokens in AWS Key Management Service (AWS KMS). Use an AWS owned key to perform the rotation.
AWS Secrets Manager is designed for securely storing, managing, and automatically rotating secrets, including API tokens. By configuring a Lambda function for custom rotation logic, the solution can automatically rotate the API tokens every 3 months as required. Secrets Manager simplifies secret management and integrates seamlessly with other AWS services, making it the ideal choice for this use case.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit