nerdexam
HashiCorp

VAULT-ASSOCIATE-002 · Question #53

The mechanism to associate an authentication method with access to specific secrets is by specifying a/an:

The correct answer is C. Policy. In Vault, policies are the fundamental mechanism used to grant or deny access to specific paths and operations for authenticated entities.

Submitted by devops_kid· Apr 18, 2026Secure Vault

Question

The mechanism to associate an authentication method with access to specific secrets is by specifying a/an:

Options

  • AAccessor
  • BToken
  • CPolicy
  • DSecret

How the community answered

(27 responses)
  • A
    4% (1)
  • C
    93% (25)
  • D
    4% (1)

Why each option

In Vault, policies are the fundamental mechanism used to grant or deny access to specific paths and operations for authenticated entities.

AAccessor

An Accessor is a non-sensitive identifier for a token, used for management like revocation, not for defining access rules to secrets.

BToken

A Token is a credential issued by Vault upon successful authentication, which then carries associated policies to authorize actions, but the token itself is not the mechanism for defining those associations.

CPolicyCorrect

Policies in Vault define the authorization rules, specifying which paths a user or machine can access and what operations (read, write, delete, list, sudo) they can perform. An authentication method, once validated, is associated with one or more policies to determine its privileges.

DSecret

A Secret is the actual sensitive data stored in Vault; it is the resource being protected, not the mechanism for granting access.

Concept tested: Vault policies for access control

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

Topics

#Vault Policies#Authorization#Access Control#Secrets Management

Community Discussion

No community discussion yet for this question.

Full VAULT-ASSOCIATE-002 Practice