nerdexam
HashiCorp

VAULT-ASSOCIATE-002 · Question #25

The Vault encryption key is stored in Vault's backend storage.

The correct answer is B. False. The Vault encryption key is never stored directly in the backend storage; instead, a cryptographically sealed version of the master key is stored, which requires unsealing to be operational.

Submitted by layla.eg· Apr 18, 2026Understand Vault Architecture

Question

The Vault encryption key is stored in Vault's backend storage.

Options

  • ATrue
  • BFalse

How the community answered

(29 responses)
  • A
    7% (2)
  • B
    93% (27)

Why each option

The Vault encryption key is never stored directly in the backend storage; instead, a *cryptographically sealed* version of the master key is stored, which requires unsealing to be operational.

ATrue

Storing the unencrypted Vault encryption key directly in the backend storage would negate the purpose of Vault's security model, as the backend storage could then be compromised to access all secrets.

BFalseCorrect

Vault employs a security barrier that encrypts all data written to the backend storage using a master key. This master key itself is never stored unencrypted in the backend; instead, it's split into key shares using Shamir's Secret Sharing or an auto-unseal mechanism, and these shares or unseal keys are used to reconstruct the master key to unseal Vault.

Concept tested: Vault's unseal process and master key storage

Source: https://developer.hashicorp.com/vault/docs/concepts/seal

Topics

#Vault Key Management#Seal/Unseal#Master Key#Backend Storage

Community Discussion

No community discussion yet for this question.

Full VAULT-ASSOCIATE-002 Practice