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_datefrom akeyless_auth_method;
List all Authentication Methods created in the last 30 days
select *from akeyless_auth_methodwhere creation_date >= CURRENT_TIMESTAMP - INTERVAL '30 days';
Schema for akeyless_auth_method
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
access_date | timestamp with time zone | The last accessed date of the authentication method, formatted for display. | |
access_info | jsonb | Additional access information for the authentication method. | |
account_id | text | The account identifier associated with the authentication method. | |
auth_method_name | text | The name of the authentication method. | |
creation_date | timestamp with time zone | The date when the authentication method was created. | |
force_sub_claims | boolean | Indicates if sub-claims are forced for the authentication method. | |
modification_date | timestamp with time zone | The date when the authentication method was last modified. | |
rules_type | text | The type of rules associated with the authentication method. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
ttl | bigint | The time-to-live (TTL) for the authentication method. |