The answer is that the role's max_ttl is set to 1h, which caps the lease renewal. This occurs because in Vault, a role’s max_ttl acts as a hard upper limit on the total lifetime of any lease generated from that role, overriding any longer TTL requested during renewal. Even when a developer explicitly renews a lease, the effective lease_duration cannot exceed this maximum, so it remains at 1 hour. On the HashiCorp Vault Associate VA-003 exam, this concept tests your understanding of lease lifecycle management and the hierarchy of TTL settings, where role-level max_ttl takes precedence over system defaults or user requests. A common trap is confusing the role’s ttl (initial lease duration) with its max_ttl (absolute cap), but remember: the max_ttl is the final ceiling that cannot be breached by any renewal. Memory tip: “Max TTL is the roof—no lease can grow taller than it.”
VA-003 Manage Vault leases Practice Question
This VA-003 practice question tests your understanding of manage vault leases. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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 read database/creds/my-role
Key Value
--- -----
lease_id database/creds/my-role/abc123...
lease_duration 1h
lease_renewable true
password ...
username v-token-my-role-...
$ vault lease renew database/creds/my-role/abc123...
Key Value
--- -----
lease_id database/creds/my-role/abc123...
lease_duration 1h
lease_renewable true
```
A developer runs the commands shown in the exhibit. After renewing the lease, the lease_duration remains 1 hour. What is the most likely reason?
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 role's max_ttl is set to 1h.
Option D is correct because the role's max_ttl overrides the lease duration when it is shorter than the requested TTL. Even if the lease is renewed, the effective TTL cannot exceed the role's max_ttl, which is set to 1 hour. This is a common Vault behavior where the role's maximum TTL acts as a hard cap on lease lifetimes.
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 lease is not renewable.
Why it's wrong here
The output shows lease_renewable: true.
✗
The mount's max_lease_ttl is set to 1h.
Why it's wrong here
This could also limit renewal, but the role's max_ttl is more likely.
✗
The developer does not have permission to renew the lease.
Why it's wrong here
The renewal command succeeded, so permission is not an issue.
✓
The role's max_ttl is set to 1h.
Why this is correct
The role max_ttl caps the lease duration.
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.
Common exam traps
Common exam trap: answer the scenario, not the keyword
HashiCorp often tests the distinction between role-level and mount-level TTL limits, trapping candidates who assume the mount's max_lease_ttl is the sole constraint when a lower role max_ttl is configured.
Trap categories for this question
Command / output trap
The output shows lease_renewable: true.
Detailed technical explanation
How to think about this question
In Vault, lease TTLs are governed by a hierarchy: the role's max_ttl (if set) caps the effective TTL, followed by the mount's max_lease_ttl, and finally the system's default max_lease_ttl (typically 32 days). When a lease is renewed, Vault checks the role's max_ttl first; if the current lease duration plus the renewal increment would exceed that limit, the renewal is truncated to the role's max_ttl. This ensures that role-based policies enforce strict time boundaries regardless of mount or system settings.
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.
Manage Vault leases — This question tests Manage Vault leases — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The role's max_ttl is set to 1h. — Option D is correct because the role's max_ttl overrides the lease duration when it is shorter than the requested TTL. Even if the lease is renewed, the effective TTL cannot exceed the role's max_ttl, which is set to 1 hour. This is a common Vault behavior where the role's maximum TTL acts as a hard cap on lease lifetimes.
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 →
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.