Use SQL to query Vault. Example:
select * from vault_engine
steampipe plugin install vault
Or if you prefer, you can clone this repository and build/install from source directly.
go build -o steampipe-plugin-vault.plugin
mv steampipe-plugin-vault.plugin ~/.steampipe/plugins/hub.steampipe.io/plugins/theapsgroup/vault@latest/steampipe-plugin-vault.plugin
cp config/vault.spc ~/.steampipe/config/vault.spc
Configuration is preferably done by ensuring you have the default Vault Environment Variables set:
VAULT_ADDR
for the address of your Vault ServerVAULT_TOKEN
for the API token used to access Vault
However, these can also be set in the configuration file:
vi ~/.steampipe/config/vault.spc
steampipe query "select * from vault_engine"
Further documentation can he found here