Courseiva
Assess Vault tokenseasyMultiple ChoiceObjective-mapped

VA-003 Assess Vault tokens Practice Question

Exhibit

```
path "secret/data/engineering/*" {
  capabilities = ["read", "list"]
}
path "secret/data/finance/*" {
  capabilities = ["create", "update"]
}
```

Refer to the exhibit. A token has this policy. Which action can the token perform?

⚠ Common exam trap

A common misconception is that a wildcard path like 'secret/data/engineering/*' implies all capabilities (create, read, update, delete, list) on that path, when in fact only the explicitly listed capabilities are allowed.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Read a secret at "secret/data/engineering/db-pass"

The token's policy grants 'read' capability on 'secret/data/engineering/*' via the 'data' path. Since 'secret/data/engineering/db-pass' falls under that wildcard, the token can read it. The policy does not allow 'update', 'list', or 'delete' actions on the specified paths.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Update a secret at "secret/data/engineering/config"

    Why it's wrong here

    Update is not granted for engineering; only read and list.

  • Read a secret at "secret/data/engineering/db-pass"

    Why this is correct

    The policy allows read on engineering/*.

  • List secrets at "secret/data/finance/"

    Why it's wrong here

    List is not granted for finance.

  • Delete a secret at "secret/data/finance/budget"

    Why it's wrong here

    No delete capability is granted; only create and update for finance.

About these practice questions

Courseiva writes every VA-003 question from scratch — 498 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This VA-003 practice question is part of Courseiva's free HashiCorp certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the VA-003 exam.