An administrator wants to view all currently enabled secrets engines and their mount paths. Which command provides this information?
`vault secrets list` is the standard CLI command that displays all enabled secrets engines and their mount paths.
Why this answer
The correct command to list all enabled secrets engines and their mount paths is `vault secrets list` (option B). Option D, `vault read sys/mounts`, is not a valid command in the Vault CLI; the endpoint `sys/mounts` is accessed via `vault secrets list` or by directly reading the path with `vault read sys/mounts` in some contexts, but the CLI command `vault read sys/mounts` does not exist. Options A and C are incorrect: `vault list sys/mounts` is not valid, and `vault secrets show` is not a real command.
Exam trap
Candidates often confuse `vault read sys/mounts` as a valid command, but the Vault CLI uses `vault secrets list` for this purpose. Option D is a trap that appears plausible but is not a supported command.
How to eliminate wrong answers
Option A is wrong because `vault list sys/mounts` is not a valid command; Vault's CLI uses `vault read sys/mounts` or `vault secrets list` to retrieve mount information, and `list` is not supported on that path. Option C is wrong because `vault secrets show` is not a valid Vault CLI command; the correct subcommand is `list`, not `show`.