2018-07-13 17:35:08 +00:00
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
layout: docs
|
|
|
|
page_title: plugin list - Command
|
|
|
|
description: The "plugin list" command lists all available plugins in the plugin catalog.
|
2018-07-13 17:35:08 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# plugin list
|
|
|
|
|
|
|
|
The `plugin list` command lists all available plugins in the plugin catalog.
|
2018-11-14 17:17:12 +00:00
|
|
|
It can be used alone or with a type such as "auth", "database", or "secret".
|
2018-07-13 17:35:08 +00:00
|
|
|
|
2022-09-09 20:03:07 +00:00
|
|
|
## Deprecation Status Column
|
|
|
|
|
|
|
|
As of 1.12, all builtin plugins will have an associated Deprecation
|
|
|
|
Status. This status will be reflected in the `Deprecation Status` column, seen
|
|
|
|
below. All non-builtin plugins will show a `Deprecation Status` of "n/a".
|
|
|
|
|
2018-07-13 17:35:08 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
List all available plugins in the catalog.
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-07-13 17:35:08 +00:00
|
|
|
$ vault plugin list
|
2022-09-29 17:22:33 +00:00
|
|
|
Name Type Version
|
|
|
|
---- ---- -------
|
|
|
|
alicloud auth v0.13.0+builtin
|
2018-07-13 17:35:08 +00:00
|
|
|
# ...
|
2018-11-14 17:17:12 +00:00
|
|
|
|
|
|
|
$ vault plugin list database
|
2022-09-29 17:22:33 +00:00
|
|
|
Name Version
|
|
|
|
---- -------
|
|
|
|
cassandra-database-plugin v1.13.0+builtin.vault
|
2018-11-14 17:17:12 +00:00
|
|
|
# ...
|
2018-07-13 17:35:08 +00:00
|
|
|
```
|
|
|
|
|
2022-09-09 20:03:07 +00:00
|
|
|
List detailed plugin information:
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ vault plugin list -detailed
|
|
|
|
Name Type Version Deprecation Status
|
|
|
|
---- ---- ------- ------------------
|
|
|
|
alicloud auth v0.12.0+builtin supported
|
|
|
|
app-id auth v1.12.0+builtin.vault pending removal
|
|
|
|
# ...
|
|
|
|
```
|
2022-09-29 17:22:33 +00:00
|
|
|
|
2018-07-13 17:35:08 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
The following flags are available in addition to the [standard set of
|
2020-01-22 20:05:41 +00:00
|
|
|
flags](/docs/commands) included on all commands.
|
2018-07-13 17:35:08 +00:00
|
|
|
|
|
|
|
### 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.
|
2022-09-09 20:03:07 +00:00
|
|
|
|
|
|
|
### Command Options
|
|
|
|
|
|
|
|
- `-detailed` `(bool: false)` - Print detailed information such as version and
|
|
|
|
deprecation status about each plugin.
|