steampipecloud_audit_logsteampipecloud_connectionsteampipecloud_organizationsteampipecloud_organization_membersteampipecloud_organization_workspace_membersteampipecloud_processsteampipecloud_tokensteampipecloud_usersteampipecloud_user_emailsteampipecloud_user_preferencessteampipecloud_workspacesteampipecloud_workspace_aggregatorsteampipecloud_workspace_connectionsteampipecloud_workspace_db_logsteampipecloud_workspace_modsteampipecloud_workspace_mod_variablesteampipecloud_workspace_pipelinesteampipecloud_workspace_processsteampipecloud_workspace_snapshot
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, last4from steampipecloud_token;
List inactive tokens
select id, user_id, status, last4from steampipecloud_tokenwhere status = 'inactive';
List tokens older than 90 days
select id, user_id, status, created_at, last4from steampipecloud_tokenwhere created_at <= (current_date - interval '90' day);
Schema for steampipecloud_token
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
created_at | timestamp with time zone | The token's creation time. | |
id | text | = | The unique identifier for the token. |
last4 | text | Last 4 digit of the token. | |
status | text | The token status. | |
updated_at | timestamp with time zone | The token's last updated time. | |
user_id | text | The user ID. | |
version_id | bigint | The version ID of the token. |