ernw/openstack
steampipe plugin install ernw/openstack

Table: openstack_group

A group represents a container for one or multiple users. A group can only be part of one domain.

Examples

Basic group info

select
group_name,
description,
domain_id,
member_list,
id
from
openstack_group;

Group by ID

select
group_name,
description,
domain_id,
member_list,
id
from
openstack_group
where
id = '47e4a9c0f1574ed99a3d5e9a3d91dd80';

All groups in default domain

select
group_name,
description,
domain_id,
member_list,
id
from
openstack_group
where
domain_id = 'default';

Schema for openstack_group

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
descriptiontextDescription describes the group purpose.
domain_idtextDomainID is the domain ID the group belongs to.
extratextExtra is a collection of miscellaneous key/values.
group_nametextName is the name of the group.
idtext=ID is the unique ID of the group.
member_listjsonbUserIDs of all members.