steampipe plugin install ellisvalentiner/confluence

Table: confluence_space

Spaces in a Confluence instance.

Examples

Get basic info about the spaces

select
id,
key,
name,
type,
status
from
confluence_space;

Get the global spaces

select
*
from
confluence_space
where
"type" = 'global';

Get personal, archived spaces

select
*
from
confluence_space
where
"type" = 'personal'
and status = 'archived';

Schema for confluence_space

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
idtext=Automatically assigned when the space is created
keytextThe key of the space.
nametextThe name of the space.
statustextThe status of the space.
typetextThe type of space.