Table: vault_kv_secret
For working with paths for secrets in the kv engines
Note: This does not expose the contents of the secrets by design.
Examples
Get all secret keys from all kv engines
select key, pathfrom vault_kv_secret;
Get all secret keys from a specific mounted kv engine (abc/
in this example)
select keyfrom vault_kv_secretwhere path = 'abc/';
Search for secret paths based on a fragment/keyword
select *from vault_kv_secretwhere key like '%myapp%';
Schema for vault_kv_secret
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
created_time | timestamp with time zone | The date and time the secret was created | |
deletion_time | timestamp with time zone | The date and time the secret was destroyed, if destroyed | |
destroyed | boolean | Whether the secret was destroyed | |
key | text | = | The key/path of the kv secret |
path | text | = | The path (mount point) of the secrets engine |
version | bigint | The current version of the secret |