nerdexam
Amazon

CLF-C02 · Question #192

What is the MOST secure way to store passwords on AWS?

The correct answer is D. Store passwords in AWS Secrets Manager.. AWS Secrets Manager (D) is purpose-built for securely storing, managing, and retrieving sensitive credentials like passwords. It provides automatic secret rotation, fine-grained IAM access controls, encryption at rest using AWS KMS, and full audit logging through CloudTrail - mak

Submitted by ravi_2018· Mar 6, 2026Security and Compliance

Question

What is the MOST secure way to store passwords on AWS?

Options

  • AStore passwords in an Amazon S3 bucket.
  • BStore passwords as AWS CloudFormation parameters.
  • CStore passwords in AWS Storage Gateway.
  • DStore passwords in AWS Secrets Manager.

How the community answered

(62 responses)
  • A
    3% (2)
  • B
    2% (1)
  • C
    8% (5)
  • D
    87% (54)

Explanation

AWS Secrets Manager (D) is purpose-built for securely storing, managing, and retrieving sensitive credentials like passwords. It provides automatic secret rotation, fine-grained IAM access controls, encryption at rest using AWS KMS, and full audit logging through CloudTrail - making it the gold standard for secrets management on AWS.

Why the other options fall short:

  • A (S3): S3 is object storage designed for files and data, not credential management - passwords stored there lack built-in rotation and are easily exposed if bucket policies are misconfigured.
  • B (CloudFormation parameters): While CloudFormation has a NoEcho option to mask values in the console, parameters are not encrypted at rest and are not meant for long-term secrets storage.
  • C (Storage Gateway): This service is a hybrid storage bridge connecting on-premises environments to AWS storage - it has nothing to do with secrets or password management.

Memory Tip: Think of AWS Secrets Manager as a locked vault with a built-in key rotation service - if the question mentions passwords, credentials, or API keys needing secure storage + rotation, always think Secrets Manager. The word "secret" in the service name is your clue!

Topics

#AWS Secrets Manager#Password Storage#Security Best Practices#Credential Management

Community Discussion

No community discussion yet for this question.

Full CLF-C02 Practice