steampipe plugin install francois2metz/scalingo

Table: scalingo_stack

List base docker image where applications can be executed in.

Examples

List stacks

select
id,
name,
created_at
from
scalingo_stack;

Get default stack

select
id,
name
from
scalingo_stack
where
"default";

Get deprecated stacks

select
id,
name
from
scalingo_stack
where
deprecated_at < now();

Schema for scalingo_stack

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
base_imagetextDocker image used to build your app.
created_attimestamp with time zoneCreation date of the stack.
defaultbooleanIs this the default stack for new app.
deprecated_attimestamp with time zoneDeprecation date of the stack.
descriptiontextHuman readable description of the stack.
idtextUnique ID of the stack.
nametextStack display name.
regiontextThe region associated to this stack.