Virtual HSM
Home
  • Virtual HSM
  • Documentation
    • What is Virtual HSM?
    • Use Case: Attested Secret Provisioning in the Cloud
    • Setup
      • Install
      • vHSM Server Configuration
        • Parameters
        • vHSM Telemetry Parameters
      • vHSM Agent
        • Agent Configuration
      • vHSM Proxy
        • Proxy Configuration
    • Get Started
      • Start the Vault server
      • MariaDB root admin password provisioning on Azure DCXas_v5 VM
    • Supported Cloud Configurations
  • Tutorials
    • Deploying the vhsm Container on an EC2 Instance
    • CLI quickstart
    • vHSM Agent quickstart
    • vHSM Proxy quickstart
    • Passing vHSM secrets using ConfigMaps
    • Provisioning MariaDB Password on Azure DCXas_v5 VM
    • Registering a buckypaper plugin
    • Monitoring vHSM with Grafana
  • Integration with Utimaco SecurityServer
    • Integrate enclaive vHSM with Utimaco HSM
  • API
    • Auth
    • Default
    • Secrets
    • System
    • Identity
    • Models
  • vHSM CLI
    • Server and Infrastructure Management
      • vhsm server
      • vhsm proxy
      • vhsm monitor
      • vhsm status
      • vhsm agent
    • Secret Management
      • vhsm read
      • vhsm write
      • vhsm delete
      • vhsm list
      • vhsm secrets
        • vhsm secrets enable
        • vhsm secrets disable
        • vhsm secrets list
        • vhsm secrets move
        • vhsm secrets tune
      • vhsm unwrap
    • Configuration and Management
      • vhsm plugin
        • vhsm plugin info
        • vhsm plugin deregister
        • vhsm plugin list
        • vhsm plugin register
        • vhsm plugin reload
        • vhsm plugin reload-status
      • vhsm namespace
      • vhsm operator
      • vhsm print
      • vhsm path-help
      • vhsm lease
    • Auditing and Debugging
      • vhsm audit
      • vhsm debug
    • Attestation
    • Security and Encryption
      • vhsm pki
        • vhsm pki health-check
        • vhsm pki issue
        • vhsm pki list-intermediates
        • vhsm pki reissue
        • vhsm pki verify-sign
      • vhsm transit
      • vhsm ssh
      • vhsm transform
    • Authentication and Authorization
      • vhsm login
      • vhsm auth
      • vhsm token
      • vhsm policy
    • Storage and Data Mangement
      • vhsm kv
      • vhsm patch
    • vhsm version
      • vhsm version-history
  • Troubleshooting
    • CA Validity Period
    • CRL Validity Period
    • Root Certificate Issued Non-CA Leaves
    • Role Allows Implicit Localhost Issuance
    • Role Allows Glob-Based Wildcard Issuance
    • Performance Impact
    • Accessibility of Audit Information
    • Allow If-Modified-Since Requests
    • Auto-Tidy Disabled
    • Tidy Hasn't Run
    • Too Many Certificates
    • Enable ACME Issuance
    • ACME Response Headers Configuration
  • Resources
    • Community
    • GitHub
    • Youtube
    • CCx101 wiki
Powered by GitBook
On this page

Was this helpful?

  1. vHSM CLI
  2. Configuration and Management
  3. vhsm plugin

vhsm plugin list

Learn to list all the available plugins that are registered in the vHSM plugin catalog

The plugin list command lists all available plugins registered in vHSM's plugin catalog. It can list all plugin types or be filtered by specific types such as auth, database, or secret.

The output includes a Deprecation Status column for built-in plugins, helping users track the plugin lifecycle. Non-builtin plugins will show a Deprecation Status of "n/a".

Usage

vhsm plugin list [options] [plugin-type]
  • [plugin-type] (optional): Limit the output to a specific plugin type — auth, database, or secret.

Available Flags

Command options

Flag
Description

-detailed

Show extended output including container status and deprecation status.

Output options

Flag
Description

-format=<string>

Format output as table (default), json, or yaml. Can also be set via the VAULT_FORMAT environment variable.

Examples

  • List all plugins in the catalog: vhsm plugin list

Name                                 Type        Version
----                                 ----        -------
alicloud                             auth        v0.13.0+builtin
cassandra-database-plugin            database    v1.13.0+builtin.vault
  • List only database plugins: vhsm plugin list database

Name                                 Version
----                                 -------
cassandra-database-plugin            v1.13.0+builtin.vault
  • List all plugins with detailed output: vhsm plugin list -detailed

Name                                 Type        Version                 Deprecation Status
----                                 ----        -------                 ------------------
alicloud                             auth        v0.15.0+builtin         supported
approle                              auth        v1.3.7+builtin.vault    supported
aws                                  auth        v1.3.7+builtin.vault    supported
azure                                auth        v0.16.0+builtin         supported
centrify                             auth        v0.15.1+builtin         supported
Previousvhsm plugin deregisterNextvhsm plugin register

Last updated 2 months ago

Was this helpful?