ernw/openstack

GitHub
steampipe plugin install ernw/openstacksteampipe plugin install ernw/openstack

Table: openstack_domain

A domain is a container for projects, users, and groups.

Examples

Basic domain info

select
name,
description,
enabled,
id
from
openstack_domain;

Domain by ID

select
name,
description,
id
from
openstack_domain
where
id = 'default';

All active domains

select
name,
description,
id
from
openstack_domain
where
enabled = true;

.inspect openstack_domain

Table of all domains.

NameTypeDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
descriptiontextDescription is the description of the Domain.
enabledbooleanEnabled is whether or not the domain is enabled.
idtextID is the unique ID of the domain.
linksjsonbLinks contains referencing links to the domain.
nametextName is the name of the domain.