nerdexam
HashiCorp

VAULT-ASSOCIATE-002 · Question #67

The vault lease renew command increments the lease time from:

The correct answer is A. The current time. The vault lease renew command extends a secret's lease by incrementing its duration from the precise moment the renewal request is processed.

Submitted by kim_seoul· Apr 18, 2026Operate Vault

Question

The vault lease renew command increments the lease time from:

Options

  • AThe current time
  • BThe end of the lease

How the community answered

(39 responses)
  • A
    87% (34)
  • B
    13% (5)

Why each option

The `vault lease renew` command extends a secret's lease by incrementing its duration from the precise moment the renewal request is processed.

AThe current timeCorrect

When a lease is renewed using `vault lease renew`, Vault calculates the new expiry time by adding the specified or default increment to the current timestamp, effectively restarting the lease duration from the moment of renewal.

BThe end of the lease

Incrementing the lease time from the end of the existing lease would extend its current expiry date, which is contrary to Vault's lease renewal model where the lease duration is reset from the point of renewal.

Concept tested: Vault lease renewal behavior

Source: https://developer.hashicorp.com/vault/docs/concepts/leasing#renewal

Topics

#Vault Leases#Lease Renewal#CLI Usage

Community Discussion

No community discussion yet for this question.

Full VAULT-ASSOCIATE-002 Practice