The correct answer is that the token's max_ttl was set to 1h when created, and the token reached its max_ttl. This happens because when you issue `vault token create -ttl=2h`, the requested TTL is the desired lifetime, but the token's actual validity is always the lower of the requested TTL and the max_ttl value—here, the max_ttl of 1h overrides the 2h request, causing expiration after just one hour. On the HashiCorp Vault Associate VA-003 exam, this scenario tests your understanding of how token TTL vs max_ttl interact, often appearing as a trap where candidates assume the `-ttl` flag alone determines expiry. The key distinction is that `ttl` is the initial lease duration, while `max_ttl` is an absolute ceiling enforced by the token's configuration or system defaults. Remember the memory tip: "TTL is the ask, max_ttl is the cap—the token lives by the lower lap."
VA-003 Assess Vault tokens Practice Question
This VA-003 practice question tests your understanding of assess vault tokens. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```
$ vault token lookup s.abc123
Key Value
--- -----
accessor a.xyz789
creation_time 1712345678
expiration_time 1712355678
creation_ttl 2h
display_name mytoken
entity_id entity-uuid-123
meta map[team:dev]
num_uses 0
orphan true
path auth/token/create
policies [default my-policy]
renewable true
type service
```
Refer to the exhibit. A developer reports that a token they created using `vault token create -policy=my-policy -ttl=2h` is no longer working after 1 hour. The token lookup output shows the token details. What is the most likely cause?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The token's max_ttl was set to 1h when created, and the token reached its max_ttl.
The token was created with a `-ttl=2h` but the token lookup output shows `max_ttl=1h`. The `max_ttl` is an upper limit enforced by the token's configuration or the system's maximum TTL setting. Even though the requested TTL was 2 hours, the token's effective lifetime is capped by the lower of the two values, so it expired after 1 hour.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
The token's max_ttl was set to 1h when created, and the token reached its max_ttl.
Why this is correct
If max_ttl is less than the requested TTL, the token will expire at max_ttl, causing it to stop working after 1 hour.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The token has num_uses set to 0, meaning it can only be used once.
Why it's wrong here
num_uses=0 means unlimited use, not a single use.
✗
The token is a service token and cannot be renewed.
Why it's wrong here
Service tokens can be renewed; this is not the issue.
✗
The token is an orphan token and requires the parent token to be valid.
Why it's wrong here
Orphan tokens have no parent; they are independent.
Common exam traps
Common exam trap: answer the scenario, not the keyword
HashiCorp often tests the distinction between `ttl` and `max_ttl`, where candidates mistakenly assume the token will last for the full `ttl` value without checking the overriding `max_ttl` limit.
Detailed technical explanation
How to think about this question
In Vault, the effective TTL of a token is the minimum of the requested TTL, the system's `max_ttl` for the mount or policy, and any `explicit_max_ttl` set on the token. The `max_ttl` shown in the lookup output is the absolute upper bound; once reached, the token expires and cannot be renewed. This behavior is governed by the token's lease duration logic, where renewal can only extend the TTL up to the `max_ttl`.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the VA-003 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Assess Vault tokens — This question tests Assess Vault tokens — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The token's max_ttl was set to 1h when created, and the token reached its max_ttl. — The token was created with a `-ttl=2h` but the token lookup output shows `max_ttl=1h`. The `max_ttl` is an upper limit enforced by the token's configuration or the system's maximum TTL setting. Even though the requested TTL was 2 hours, the token's effective lifetime is capped by the lower of the two values, so it expired after 1 hour.
What should I do if I get this VA-003 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A DevOps team is using Vault tokens with short TTLs for CI/CD jobs. They notice that some jobs fail intermittently with 'permission denied' errors even though the token policy grants the required capabilities. The token is created with a TTL of 10 minutes and renewed automatically by the client library. What is the most likely cause of the failures?
medium
✓ A.The token's max_ttl has been exceeded, causing renewal to fail.
B.The token's parent token has been revoked.
C.The token's max_ttl is being reset each time the token is renewed.
D.The token's TTL is too short and the client library is not renewing in time.
Why A: The correct answer is A because Vault tokens have both a TTL (time-to-live) and a max_ttl (maximum time-to-live). When a token is renewed, its TTL is reset to the original TTL (10 minutes) but only if the cumulative lifetime has not exceeded the max_ttl. If the max_ttl is reached, renewal fails, the token expires, and subsequent operations using that token return 'permission denied' errors, even though the policy itself grants the required capabilities.
Last reviewed: Jun 30, 2026
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
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.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.