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 pathfrom vault_enginewhere type = 'kv';
Get a count of engines by type
select type, count(*)from vault_enginegroup by type;
Schema for vault_engine
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
accessor | text | The accessor used by the secrets engine | |
default_ttl | bigint | Default TTL of Secrets within Engine | |
deprecation_status | text | Deprecation status of the authentication method | |
description | text | Description associated to mounted engine | |
local | boolean | Indicates if it is a Local Mount (local mounts are not replicated across clusters) | |
max_ttl | bigint | Max TTL of Secrets within Engine | |
options | jsonb | The option configuration associated with the authentication method | |
path | text | = | The path (mount point) of the secrets engine |
plugin_version | text | Information about the plugin used for the authentication method | |
seal_wrap | boolean | Is the secrets engine running seal wrap (https://www.vaultproject.io/docs/enterprise/sealwrap) | |
type | text | The type of the secrets engine | |
version | bigint | The secrets engine version |