Valid HCVA0-003 Dumps shared by ExamDiscuss.com for Helping Passing HCVA0-003 Exam! ExamDiscuss.com now offer the newest HCVA0-003 exam dumps, the ExamDiscuss.com HCVA0-003 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com HCVA0-003 dumps with Test Engine here:
An Active Directory admin created a service account for an internal application. You want to store these credentials in Vault, allowing a CI/CD pipeline to read and configure the application with them during provisioning. Vault should maintain the last 3 versions of this secret. Which Vault secrets engine should you use?
Correct Answer: D
Comprehensive and Detailed In-Depth Explanation: The requirement is to store static credentials (from Active Directory) in Vault with versioning (last 3 versions) for a CI/CD pipeline. The KV v2 secrets engine is designed for this: it stores arbitrary key-value pairs and supports versioning, allowing configuration of a maximum version count (e.g., vault kv metadata put -max- versions=3 kv/path). KV v1 (option A) lacks versioning. The LDAPengine (B) is for dynamic LDAP credentials, not static storage. The Identity engine (C) manages identities, not secrets. KV v2's versioning capability meets all needs, per its documentation. References: KV v2 Docs KV Versions Comparison