summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2020-03-17 11:31:49 -0700
committerTim Burke <tburke@nvidia.com>2020-03-20 06:47:52 +0000
commitf88d07f9539990c9c55c8b1ffdd9727ae1ac1369 (patch)
tree7ed518a8541e20e0ec1143451780107475e0dee6
parent66352680ab7abc1c2bcc0dbe61c5558c41e4ff20 (diff)
downloadkeystonemiddleware-f88d07f9539990c9c55c8b1ffdd9727ae1ac1369.tar.gz
Have middlewarearchitecture doc reference auth_type option
We literally say in (the rendered version of) the same doc: # Authentication type to load (string value) # Deprecated group/name - [keystone_authtoken]/auth_plugin #auth_type = <None> Looks like auth_plugin has been deprecated for quite some time: https://opendev.org/openstack/keystoneauth/commit/a56ed4218 Change-Id: I2dafa0cb28f017667497e0a6585d96a8cd090d5f
-rw-r--r--doc/source/middlewarearchitecture.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst
index 123b841..7b68cbc 100644
--- a/doc/source/middlewarearchitecture.rst
+++ b/doc/source/middlewarearchitecture.rst
@@ -129,7 +129,7 @@ a WSGI component. Example for the auth_token middleware:
.. literalinclude:: _static/keystonemiddleware.conf.sample
-If the ``auth_plugin`` configuration option is set, you may need to refer to
+If the ``auth_type`` configuration option is set, you may need to refer to
the `Authentication Plugins <https://docs.openstack.org/keystoneauth/latest/
authentication-plugins.html>`_ document for how to configure the auth_token
middleware.
@@ -163,12 +163,12 @@ and set in ``nova.conf``:
to use options in the [keystone_authtoken] section.
The following is an example of a service's auth_token middleware configuration
-when ``auth_plugin`` is set to ``password``.
+when ``auth_type`` is set to ``password``.
.. code-block:: ini
[keystone_authtoken]
- auth_plugin = password
+ auth_type = password
project_domain_name = Default
project_name = service
user_domain_name = Default
@@ -178,9 +178,9 @@ when ``auth_plugin`` is set to ``password``.
auth_url = http://127.0.0.1:5000
# Any of the options that could be set in api-paste.ini can be set here.
-If using an ``auth_plugin``, connection to the Identity service will be
+If using an ``auth_type``, connection to the Identity service will be
established on the ``interface`` as registered in the service catalog.
-In the case where you are using an ``auth_plugin`` and have multiple regions,
+In the case where you are using an ``auth_type`` and have multiple regions,
also specify the ``region_name`` option to fetch the correct endpoint.
If the service doesn't use the global oslo.config object (CONF), then the