Add missing DOA config value to docs

DEFAULT_SERVICE_REGIONS was recently added and documented in Django
OpenStack Auth. In preparation for adding DOA to Horizon, lets add this
to the Horizon doc.

Change-Id: Ic8a6c45eeec555cdb16068630ae693199e40d6f5
This commit is contained in:
Rob Cresswell 2017-07-20 12:52:10 +01:00
parent c42acdecaf
commit 42841335ca
1 changed files with 25 additions and 0 deletions

View File

@ -1135,6 +1135,31 @@ the site header when logged in.
You should also define `OPENSTACK_KEYSTONE_URL`_ to indicate which of
the regions is the default one.
``DEFAULT_SERVICE_REGIONS``
---------------------------
.. versionadded:: 12.0.0(Pike)
Default: ``{}``
The default service region is set on a per-endpoint basis, meaning that once
the user logs into some Keystone endpoint, if a default service region is
defined for it in this setting and exists within Keystone catalog, it will be
set as the initial service region in this endpoint. By default it is an empty
dictionary because upstream can neither predict service region names in a
specific deployment, nor tell whether this behavior is desired. The key of the
dictionary is a full url of a Keystone endpoint with version suffix, the value
is a region name.
Example:
.. code-block:: python
DEFAULT_SERVICE_REGIONS = {
OPENSTACK_KEYSTONE_URL: 'RegionOne'
}
ENABLE_CLIENT_TOKEN
~~~~~~~~~~~~~~~~~~~