path-help
The path-help
command retrieves API help for paths. All endpoints in Vault
provide built-in help in markdown format. This includes system paths, secret
engines, and auth methods.
The help system is the easiest way to learn how to use the various systems in Vault, and also allows you to discover new paths.
Before using path-help
, it is important to understand "paths" within Vault.
Paths are the parameters used for vault read
, vault write
, etc. An example
path is secret/foo
, or aws/config/root
. The paths available depend on the
secrets engines in use. Because of this, the interactive help is an
indispensable tool to finding what paths are supported.
To discover what paths are supported, use vault path-help PATH
. For example,
if you enabled the AWS secrets engine, you can use vault path-help aws
to find
the paths supported by that backend. The paths are shown with regular
expressions, which can make them hard to parse, but they are also extremely
exact.
Examples
Get help output for the KV secrets engine:
Once you've found a path you like, you can learn more about it by using vault path-help <path>
where "path" is a path that matches one of the regular
expressions from the backend help.
Usage
There are no flags beyond the standard set of flags included on all commands.