ernw/openstack
steampipe 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;

Schema for openstack_domain

NameTypeOperatorsDescription
_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.
idtext=ID is the unique ID of the domain.
linksjsonbLinks contains referencing links to the domain.
nametextName is the name of the domain.