steampipe plugin install marekjalovec/make

Table: make_api_token

API tokens of the currently authenticated user.

Examples

List of all my API Tokens

select
token,
label,
scope,
created
from
make_api_token;

Find out which API Token is being used without opening make.spc

select
token,
label
from
make_api_token
where
is_active = true;

Schema for make_api_token

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
createdtimestamp with time zoneCreation date of the API Token.
is_activebooleanIs the API Token currently used in make.spc?
labeltextThe name of the API Token.
scopejsonbScopes enabled for the API Token.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextThe display name for the resource.
tokentextThe API Token (masked).