b76a56d40c
* migrates nav data format and updates docs pages * removes sidebar_title from content files
57 lines
2.3 KiB
Plaintext
57 lines
2.3 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: secrets list - Command
|
|
description: |-
|
|
The "secrets list" command lists the enabled secrets engines on the Vault
|
|
server. This command also outputs information about the enabled path including
|
|
configured TTLs and human-friendly descriptions. A TTL of "system" indicates
|
|
that the system default is in use.
|
|
---
|
|
|
|
# secrets list
|
|
|
|
The `secrets list` command lists the enabled secrets engines on the Vault server.
|
|
This command also outputs information about the enabled path including
|
|
configured TTLs and human-friendly descriptions. A TTL of "system" indicates
|
|
that the system default is in use.
|
|
|
|
## Examples
|
|
|
|
List all enabled secrets engines:
|
|
|
|
```shell-session
|
|
$ vault secrets list
|
|
Path Type Description
|
|
---- ---- -----------
|
|
cubbyhole/ cubbyhole per-token private secret storage
|
|
secret/ kv key/value secret storage
|
|
sys/ system system endpoints used for control, policy and debugging
|
|
```
|
|
|
|
List all enabled secrets engines with detailed output:
|
|
|
|
```shell-session
|
|
$ vault secrets list -detailed
|
|
Path Type Accessor Plugin Default TTL Max TTL Force No Cache Replication Description
|
|
---- ---- -------- ------ ----------- ------- -------------- ----------- -----------
|
|
cubbyhole/ cubbyhole cubbyhole_10fbb584 n/a n/a n/a false local per-token private secret storage
|
|
secret/ kv kv_167ce199 n/a system system false replicated key/value secret storage
|
|
sys/ system system_a9fd745d n/a n/a n/a false replicated system endpoints used for control, policy and debugging
|
|
```
|
|
|
|
## Usage
|
|
|
|
The following flags are available in addition to the [standard set of
|
|
flags](/docs/commands) included on all commands.
|
|
|
|
### Output Options
|
|
|
|
- `-format` `(string: "table")` - Print the output in the given format. Valid
|
|
formats are "table", "json", or "yaml". This can also be specified via the
|
|
`VAULT_FORMAT` environment variable.
|
|
|
|
### Command Options
|
|
|
|
- `-detailed` `(bool: false)` - Print detailed information such as configuration
|
|
and replication status about each secrets engine.
|