HashiCorp · Vault-Associate
Validates knowledge of HashiCorp Vault for secrets management and data protection, covering authentication methods, policies and tokens, lease management, static and dynamic secrets engines, encryption as a service, and Vault architecture including high availability.
Practice Questions
622
≈ 10 practice exams
Duration
60 minutes
Passing Score
70%
Difficulty
AssociateLast Updated
Feb 2026
Use this Vault-Associate practice exam to prepare for HashiCorp Certified: Vault Associate with realistic questions, detailed explanations, and focused study modes. The practice bank includes 622 questions for HashiCorp Vault-Associate, so you can review the exam steadily instead of relying on one long cram session.
As you practice, pay extra attention to patterns in your missed answers. Start with short sessions to identify weak areas, then move into timed quizzes once your accuracy is consistent.
The explanations are especially useful when you want to connect exam wording to the responsibilities and scenarios described in the official certification guidance. Use the free preview first, then unlock the full question bank when you are ready to build a complete study routine.
The HashiCorp Certified: Vault Associate (003) validates foundational knowledge and hands-on skills with HashiCorp Vault, the industry-standard platform for secrets management and data protection. The exam tests candidates on Vault's core mechanics: accessing Vault through the UI, CLI, and API; managing authentication methods, tokens, and policies; working with static and dynamic secrets engines including Key/Value, Database, and Identity engines; managing leases and renewals; and leveraging the Transit secrets engine for encryption as a service (EaaS). The current exam version tests against Vault 1.16 and covers both the open-source Community Edition and Enterprise features.
Candidates are also evaluated on Vault architecture, including high-availability deployment models, Vault Agent, the Vault Secrets Operator for Kubernetes, HCP Vault Dedicated on the cloud, and replication strategies. The certification is delivered through Certiverse, HashiCorp's online proctored testing platform, and is valid for two years. It serves as the foundation for advanced HashiCorp security certifications and is recognized across cloud-native and regulated enterprise environments.
This certification is designed for Cloud Engineers with foundational Vault experience who specialize in security, development, or operations. It is well-suited for DevOps engineers, Site Reliability Engineers (SREs), platform engineers, security engineers, and developers who integrate secrets management into cloud-native applications and pipelines.
Candidates working in environments that use Kubernetes, cloud infrastructure (AWS, Azure, GCP), or CI/CD platforms where secrets must be securely injected and managed will find this certification most relevant. It is an associate-level credential, meaning it targets practitioners who understand Vault's core concepts and can operate it in a production or demo environment, rather than those with deep architectural design experience.
There are no formal prerequisites required to sit for the exam. However, HashiCorp recommends that candidates have basic terminal competency, a foundational understanding of on-premises or cloud infrastructure, and a basic level of security knowledge before attempting the exam.
Practical experience using Vault in a production environment provides the strongest preparation, though candidates who have worked through all exam objectives in a personal or lab environment may also be ready. Familiarity with concepts such as authentication flows, PKI, database credential rotation, and Kubernetes secret injection will be advantageous, even if not explicitly required.
The Vault Associate (003) exam is a multiple-choice, online-proctored assessment delivered through Certiverse via HashiCorp's Certification Portal (GitHub login required). The exam duration is 1 hour, though candidates should budget approximately 90 minutes total to account for setup and identity verification. Question formats include standard multiple choice, true/false, scenario-based questions, and UI area-selection items.
HashiCorp does not publicly disclose the exact number of questions or a numerical passing score threshold — results are displayed as pass/fail immediately upon completion. A domain-level performance breakdown is typically made available within two business days. The exam costs $70.50 USD plus applicable taxes. Candidates who do not pass must wait 7 days before retaking and are limited to four attempts within a rolling year. Credentials are valid for 2 years, with recertification eligibility beginning at 18 months.
The Vault Associate certification signals verified competence in secrets lifecycle management, a skill set in high demand across DevOps, platform engineering, and security-focused roles. Organizations running cloud-native workloads on Kubernetes, AWS, Azure, or GCP routinely list Vault experience as a requirement in job postings for SRE, DevSecOps, and cloud security engineer roles. HashiCorp reports that 88% of exam takers agree that passing an Associate-level exam makes job candidates more desirable to employers. Vault has become the de facto standard for secrets management in enterprises operating in regulated industries (financial services, healthcare, government), making this certification particularly valuable for practitioners in those sectors.
Professionals specializing in HashiCorp tooling report average salaries in the range of $80,000 per year according to PayScale, with senior cloud security and platform engineering roles often commanding significantly more. The $70.50 exam fee and two-year validity period make it a high-ROI credential. It also serves as a stepping stone to the HashiCorp Vault Operations Professional certification, which targets advanced deployment and architectural design skills.
5 sample questions with answers and explanations. The full bank has 622 questions, enough for 10 full-length practice exams.
Preview — answers shown1. A Vault cluster running Integrated Storage experiences a network partition. The cluster originally had 5 nodes, but the network split creates two groups: one with 3 nodes and one with 2 nodes. What will happen to cluster operations? (Select one!)
Explanation
Integrated Storage (Raft) requires a majority quorum to operate. With 5 nodes, a minimum of 3 nodes is required for quorum. The group with 3 nodes maintains quorum and continues handling read and write operations. The group with 2 nodes loses quorum and cannot process requests, causing those Vault nodes to seal themselves to prevent split-brain scenarios. Raft does not support a read-only mode for nodes without quorum. Raft's consensus algorithm prevents split-brain scenarios where both groups operate independently. The nodes with quorum continue operating normally, not the entire cluster becoming unavailable.
2. A disaster recovery architect implements Vault Enterprise with DR Replication between a primary cluster in us-east-1 and a DR secondary cluster in eu-west-1. After a regional failure, the architect promotes the DR secondary to primary. What must application teams do to continue accessing Vault? (Select one!)
Explanation
DR Replication replicates tokens and leases to secondary clusters. When a DR secondary is promoted to primary, existing tokens remain valid because they were replicated. Applications only need to update their Vault address (VAULT_ADDR) to point to the newly promoted cluster. No re-authentication is required. Tokens and leases are replicated in DR mode, unlike Performance Replication where they are not. There is no automatic synchronization process; tokens are continuously replicated.
3. A developer creates an encryption key in Transit with type aes256-gcm96 and encrypts data over several months. They need to sign messages for authentication. Which action should they take? (Select one!)
Explanation
Transit keys have fixed types that determine their capabilities. The aes256-gcm96 type supports encryption and decryption only. Signing requires asymmetric key types like ed25519, ecdsa-p256, or RSA variants. A separate key must be created. The aes256-gcm96 key type does not support signing operations. Only asymmetric key types can sign. Key types cannot be changed after creation. Each key type has fixed cryptographic algorithms and capabilities. There is no configuration option to add signing capability to encryption-only key types. The type determines capabilities permanently.
4. A financial company implements Vault Enterprise with DR Replication between primary and secondary clusters. The primary cluster experiences a complete failure. What must occur for applications to continue accessing secrets? (Select two!)
Multiple correct answersExplanation
DR Replication replicates all data including tokens and leases to the secondary cluster. When the DR secondary is promoted to primary after a disaster, tokens that existed on the original primary remain valid on the newly promoted cluster. Applications can continue using existing tokens without re-authentication, minimizing recovery time. Performance Replication does not replicate tokens or leases, making it unsuitable for disaster recovery. Restoring from snapshot is not required as the DR secondary has a complete replica. Re-authentication is not necessary because tokens are replicated.
5. A compliance team audits Vault logs and observes that sensitive password values are not visible in plaintext but appear as hashed values. They need to verify if a specific authentication event corresponds to a known password. Which command generates the hash value to compare against audit logs? (Select one!)
Explanation
The sys/audit-hash endpoint allows operators to generate HMAC-SHA256 hashes of sensitive values that match how they appear in audit logs. The command syntax is vault write sys/audit-hash/<audit-device-path> input=<value>. This enables verification of specific values in audit logs without storing plaintext. The vault audit hash command does not exist. Token metadata does not relate to audit hashing. The sys/audit/hash read path is incorrect syntax for this operation.
$17.99
One-time access to this exam