domain¶
A domain is a collection of users, groups, and projects. Each group and project is owned by exactly one domain. Applies to Identity v3.
domain create¶
Create new domain
openstack domain create
[--description <description>]
[--enable | --disable]
[--or-show]
<domain-name>
-
--description<description>¶ New domain description
-
--enable¶ Enable domain (default)
-
--disable¶ Disable domain
-
--or-show¶ Return existing domain
-
domain-name¶ New domain name
This command is provided by the python-openstackclient plugin.
domain delete¶
Delete domain(s)
openstack domain delete <domain> [<domain> ...]
-
domain¶ Domain(s) to delete (name or ID)
This command is provided by the python-openstackclient plugin.
domain list¶
List domains
openstack domain list [--sort-column SORT_COLUMN]
-
--sort-columnSORT_COLUMN¶ specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
This command is provided by the python-openstackclient plugin.
domain set¶
Set domain properties
openstack domain set
[--name <name>]
[--description <description>]
[--enable | --disable]
<domain>
-
--name<name>¶ New domain name
-
--description<description>¶ New domain description
-
--enable¶ Enable domain
-
--disable¶ Disable domain
-
domain¶ Domain to modify (name or ID)
This command is provided by the python-openstackclient plugin.