openstack_aggregateopenstack_application_credentialopenstack_availability_zoneopenstack_compute_imageopenstack_domainopenstack_fipopenstack_groupopenstack_keypairopenstack_networkopenstack_portopenstack_projectopenstack_roleopenstack_role_assignmentopenstack_routeropenstack_security_groupopenstack_security_group_ruleopenstack_serveropenstack_server_groupopenstack_snapshotopenstack_subnetopenstack_useropenstack_volumeopenstack_volume_type
Table: openstack_domain
A domain is a container for projects, users, and groups.
Examples
Basic domain info
select name, description, enabled, idfrom openstack_domain;
Domain by ID
select name, description, idfrom openstack_domainwhere id = 'default';
All active domains
select name, description, idfrom openstack_domainwhere enabled = true;
.inspect openstack_domain
Table of all domains.
Name | Type | Description |
---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. |
description | text | Description is the description of the Domain. |
enabled | boolean | Enabled is whether or not the domain is enabled. |
id | text | ID is the unique ID of the domain. |
links | jsonb | Links contains referencing links to the domain. |
name | text | Name is the name of the domain. |