openstack_aggregateopenstack_application_credentialopenstack_availability_zoneopenstack_compute_imageopenstack_domainopenstack_fipopenstack_groupopenstack_hypervisoropenstack_keypairopenstack_networkopenstack_portopenstack_projectopenstack_roleopenstack_role_assignmentopenstack_routeropenstack_security_groupopenstack_security_group_ruleopenstack_serveropenstack_server_groupopenstack_snapshotopenstack_subnetopenstack_useropenstack_volumeopenstack_volume_type
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, idfrom openstack_group;
Group by ID
select group_name, description, domain_id, member_list, idfrom openstack_groupwhere id = '47e4a9c0f1574ed99a3d5e9a3d91dd80';
All groups in default domain
select group_name, description, domain_id, member_list, idfrom openstack_groupwhere domain_id = 'default';
Schema for openstack_group
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
description | text | Description describes the group purpose. | |
domain_id | text | DomainID is the domain ID the group belongs to. | |
extra | text | Extra is a collection of miscellaneous key/values. | |
group_name | text | Name is the name of the group. | |
id | text | = | ID is the unique ID of the group. |
member_list | jsonb | UserIDs of all members. |