steampipe plugin install theapsgroup/vault

Table: vault_auth

Vault Authentication Methods currently configured.

Examples

List all authentication methods

select
*
from
vault_auth;

List authentication methods of a specific type (oidc in example)

select
*
from
vault_auth
where
type = 'oidc';

Schema for vault_auth

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
accessortextThe accessor used by authentication method
default_ttlbigintDefault TTL
deprecation_statustextDeprecation status of the authentication method
descriptiontextDescription associated to the authentication method
external_entropy_accessbooleanDoes Authentication Method have access to Vaults external entropy source
localbooleanLocal Auth Methods are not replicated across clusters
max_ttlbigintMax TTL
optionsjsonbThe option configuration associated with the authentication method
pathtext=The path (mount point) of the authentication method
plugin_versiontextInformation about the plugin used for the authentication method
request_headersjsonbAllowed Pass-Through Request Headers
seal_wrapbooleanIs running seal wrap (https://www.vaultproject.io/docs/enterprise/sealwrap)
typetextThe type of authentication method