steampipe plugin install akeyless-community/akeyless

Table: akeyless_item

Akeyless items

Examples

List all Items with complete information

select
*
from
akeyless_item;

List all Items by Name and Type

select
item_name,
item_sub_type
from
akeyless_item;

List all Items created in the last 30 days

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

Schema for akeyless_item

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
access_request_statustextThe current status of access requests for the item.
account_idtextThe account identifier associated with the item.
auto_rotatebooleanIndicates whether the item is set to rotate automatically.
client_permissionsjsonbPermissions assigned to clients for this item.
creation_datetimestamp with time zoneThe date and time when the item was created.
delete_protectionbooleanIndicates if delete protection is enabled for the item.
is_access_request_enabledbooleanIndicates if access requests are enabled for this item.
is_enabledbooleanIndicates if the item is currently enabled.
item_general_infojsonbGeneral information about the item.
item_idbigintThe unique identifier for the item.
item_nametextThe name of the item.
item_statetextThe current state of the item.
item_sub_typetextThe sub-type of the item.
item_targets_assocjsonbAssociations between the item and its targets.
last_rotation_datetimestamp with time zoneThe date when the last rotation for the item occurred.
last_versionbigintThe most recent version number of the item.
modification_datetimestamp with time zoneThe date and time when the item was last modified.
next_rotation_datetimestamp with time zoneThe date when the next rotation for the item is scheduled.
protection_key_nametextThe name of the protection key used for securing the item.
rotation_intervalbigintThe interval at which the item is rotated.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
with_customer_fragmentbooleanIndicates if the item includes a customer-specific fragment.