turbot/steampipecloud
steampipe plugin install steampipecloud

Table: steampipecloud_connection

Connections represent a set of tables for a single data source. Each connection is represented as a distinct Postgres schema.

Examples

Basic info

select
id,
plugin,
handle,
identity_handle
from
steampipecloud_connection;

List connections using AWS plugin

select
id,
plugin,
handle,
jsonb_pretty(config) as config,
identity_handle
from
steampipecloud_connection
where
plugin = 'aws';

List user connections

select
id,
plugin,
handle,
jsonb_pretty(config) as config,
identity_handle
from
steampipecloud_connection
where
identity_type = 'user';

List organization workspaces

select
id,
plugin,
handle,
jsonb_pretty(config) as config,
identity_handle
from
steampipecloud_connection
where
identity_type = 'org';

Schema for steampipecloud_connection

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
configjsonbThe connection config details.
created_attimestamp with time zoneThe connection created time.
created_byjsonbInformation about the user who created the connection.
created_by_idtextThe unique identifier of the user who created the connection.
handletext=The handle name for the connection.
idtextThe unique identifier for the connection.
identity_handletext=The handle name for an identity where the connection has been created.
identity_idtext=The unique identifier for an identity where the connection has been created.
identity_typetextThe type of identity, which can be 'user' or 'org'.
plugintextThe plugin name for the connection.
typetextThe connection type.
updated_attimestamp with time zoneThe connection's updated time.
updated_byjsonbInformation about the user who last updated the connection.
updated_by_idtextThe unique identifier of the user who last updated the connection.
version_idbigintThe version ID for the connection.