nerdexam
HashiCorp

VAULT-ASSOCIATE-002 · Question #82

When unsealing Vault each Shamir unseal key should be entered:

The correct answer is B. By different administrators each connecting from different computers. To enhance security, Vault's Shamir unseal keys should be entered by different administrators from separate computers.

Submitted by yousef_jo· Apr 18, 2026Secure Vault

Question

When unsealing Vault each Shamir unseal key should be entered:

Options

  • ASequentially from one system that all of the administrators are in front of
  • BBy different administrators each connecting from different computers
  • CWhile encrypted with each administrators PGP key
  • DAt the command line in one single command

How the community answered

(21 responses)
  • B
    95% (20)
  • C
    5% (1)

Why each option

To enhance security, Vault's Shamir unseal keys should be entered by different administrators from separate computers.

ASequentially from one system that all of the administrators are in front of

Entering keys sequentially from one system contradicts the security best practice of distributed control and introduces a single point of failure.

BBy different administrators each connecting from different computersCorrect

The Shamir secret sharing algorithm distributes master key shares among multiple trusted operators. For unsealing Vault, each operator should enter their key from a different machine to prevent a single point of compromise and ensure multi-person control over the unseal process.

CWhile encrypted with each administrators PGP key

While PGP can be used for securing the key at rest, the unsealing process itself involves entering the decrypted key share, not encrypting it during entry.

DAt the command line in one single command

Unseal keys are entered individually, not as part of a single command, to enforce the multi-operator requirement for security.

Concept tested: Vault Shamir unseal security practices

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

Topics

#Vault Unsealing#Shamir Secret Sharing#Security Best Practices#Multi-administrator Operations

Community Discussion

No community discussion yet for this question.

Full VAULT-ASSOCIATE-002 Practice