steampipe plugin install francois2metz/scalingo

Table: scalingo_key

List the API tokens associated to your account.

Examples

List tokens

select
id,
name,
last_used_at
from
scalingo_token;

List tokens unused since 2 months

select
id,
name,
last_used_at
from
scalingo_token
where
last_used_at < now() - interval '60 days';

Schema for scalingo_token

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneToken creation date.
idtextUnique ID of the token.
last_used_attimestamp with time zoneToken last used date.
nametextToken name.