2c16be25e3
* auth: Add Deprecation Status to auth list -detailed * secrets: Add Deprecation Status to secrets list -detailed * Add changelog entry for deprecation status list
65 lines
3.4 KiB
Plaintext
65 lines
3.4 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.
|
|
|
|
## Deprecation Status Column
|
|
|
|
As of 1.12, all builtin secrets engines will have an associated Deprecation
|
|
Status. This status will be reflected in the `Deprecation Status` column, seen
|
|
below. All secrets engines which are not provided by builtin plugins will show a
|
|
`Deprecation Status` of "n/a".
|
|
|
|
## 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 Plugin Accessor Default TTL Max TTL Force No Cache Replication Seal Wrap External Entropy Access Options Description UUID Deprecation Status
|
|
---- ------ -------- ----------- ------- -------------- ----------- --------- ----------------------- ------- ----------- ---- ------------------
|
|
cubbyhole/ cubbyhole cubbyhole_b16d1bc0 n/a n/a false local false false map[] per-token private secret storage 8c64d56b-9d46-d667-1155-a8c1a83a5d01 n/a
|
|
identity/ identity identity_3d67c936 system system false replicated false false map[] identity store 5aa1e59c-33b5-9dec-05d6-c80c9a800557 n/a
|
|
postgresql/ postgresql postgresql_f0a54308 system system false replicated false false map[] n/a 8cdc1d2d-0713-eaa6-17e3-49790a60650b deprecated
|
|
sys/ system system_c86bd362 n/a n/a false replicated true false map[] system endpoints used for control, policy and debugging e3193999-0875-d38d-3458-21d9f2762c80 n/a
|
|
```
|
|
|
|
## 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.
|