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_authwhere type = 'oidc';
Schema for vault_auth
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
accessor | text | The accessor used by authentication method | |
default_ttl | bigint | Default TTL | |
deprecation_status | text | Deprecation status of the authentication method | |
description | text | Description associated to the authentication method | |
external_entropy_access | boolean | Does Authentication Method have access to Vaults external entropy source | |
local | boolean | Local Auth Methods are not replicated across clusters | |
max_ttl | bigint | Max TTL | |
options | jsonb | The option configuration associated with the authentication method | |
path | text | = | The path (mount point) of the authentication method |
plugin_version | text | Information about the plugin used for the authentication method | |
request_headers | jsonb | Allowed Pass-Through Request Headers | |
seal_wrap | boolean | Is running seal wrap (https://www.vaultproject.io/docs/enterprise/sealwrap) | |
type | text | The type of authentication method |