An admin wants to view all active leases for a specific secrets engine path. Which two approaches are valid? (Choose two.)
This path lists lease IDs for the given mount.
Why this answer
`vault list sys/leases/lookup/<mount_path>` lists all active lease IDs for a given secrets engine mount path by querying the lease lookup endpoint. Option C is correct because `vault list sys/leases/prefix/<mount_path>` lists leases that share a common prefix, which effectively returns all active leases under that mount path when the mount path is used as the prefix. Both commands use the `list` operation against the sys/leases API to retrieve active lease IDs.
Exam trap
Candidates often confuse the correct API endpoint paths for listing leases, such as `/lookup/` vs `/prefix/` vs `/list/`, and may incorrectly use `vault read` instead of `vault list`.