steampipe plugin install akeyless-community/akeyless

Table: akeyless_auth_method

Akeyless authentication methods

Examples

List all Authentication Methods with complete information

select
*
from
akeyless_auth_method;

List all Authentication Methods by Name and Date Created

select
auth_method_name,
creation_date
from
akeyless_auth_method;

List all Authentication Methods created in the last 30 days

select
*
from
akeyless_auth_method
where
creation_date >= CURRENT_TIMESTAMP - INTERVAL '30 days';

Schema for akeyless_auth_method

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
access_datetimestamp with time zoneThe last accessed date of the authentication method, formatted for display.
access_infojsonbAdditional access information for the authentication method.
account_idtextThe account identifier associated with the authentication method.
auth_method_nametextThe name of the authentication method.
creation_datetimestamp with time zoneThe date when the authentication method was created.
force_sub_claimsbooleanIndicates if sub-claims are forced for the authentication method.
modification_datetimestamp with time zoneThe date when the authentication method was last modified.
rules_typetextThe type of rules associated with the authentication method.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
ttlbigintThe time-to-live (TTL) for the authentication method.