turbot/steampipecloud
steampipe plugin install steampipecloud

Table: steampipecloud_token

API tokens can be used to access the Steampipe Cloud API or to connect to Steampipe Cloud workspaces from the Steampipe CLI.

Examples

Basic info

select
id,
user_id,
status,
last4
from
steampipecloud_token;

List inactive tokens

select
id,
user_id,
status,
last4
from
steampipecloud_token
where
status = 'inactive';

List tokens older than 90 days

select
id,
user_id,
status,
created_at,
last4
from
steampipecloud_token
where
created_at <= (current_date - interval '90' day);

Schema for steampipecloud_token

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneThe token's creation time.
idtext=The unique identifier for the token.
last4textLast 4 digit of the token.
statustextThe token status.
updated_attimestamp with time zoneThe token's last updated time.
user_idtextThe user ID.
version_idbigintThe version ID of the token.