steampipe plugin install theapsgroup/vault

Table: vault_engine

Vault Secrets Engines currently mounted.

Examples

List all mounted engines

select
*
from
vault_engine;

Get the path of mounted engines which are of the Key Value (KV) type

select
path
from
vault_engine
where
type = 'kv';

Get a count of engines by type

select
type,
count(*)
from
vault_engine
group by
type;

Schema for vault_engine

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
accessortextThe accessor used by the secrets engine
default_ttlbigintDefault TTL of Secrets within Engine
deprecation_statustextDeprecation status of the authentication method
descriptiontextDescription associated to mounted engine
localbooleanIndicates if it is a Local Mount (local mounts are not replicated across clusters)
max_ttlbigintMax TTL of Secrets within Engine
optionsjsonbThe option configuration associated with the authentication method
pathtext=The path (mount point) of the secrets engine
plugin_versiontextInformation about the plugin used for the authentication method
seal_wrapbooleanIs the secrets engine running seal wrap (https://www.vaultproject.io/docs/enterprise/sealwrap)
typetextThe type of the secrets engine
versionbigintThe secrets engine version