ernw/openstack
steampipe plugin install ernw/openstack

Table: openstack_server_group

A server group constitutes a container holding one or more instances. Server groups can be used to organize instances depending on their task or properties.

Examples

Basic server group info

select
name,
id,
policies,
members
from
openstack_server_group;

Server group by ID

select
name,
id,
policies,
members
from
openstack_server_group;

Schema for openstack_server_group

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
idtext=ID is the unique ID of the Server Group.
max_server_per_hosttextMaxServerPerHost specifies how many servers can reside on a single compute host. It can be used only with the "anti-affinity" policy.
membersjsonbMembers are the members of the server group.
metadatajsonbMetadata includes a list of all user-specified key-value pairs attached to the Server Group.
nametextName is the common name of the server group.
policiesjsonbPolices are the group policies.
policytextPolicy is the policy of a server group. This requires microversion 2.64 or later.
project_idtextProjectID of the server group.
user_idtextUserID of the server group.