Add a help text for auth_strategy

Change-Id: I684546d839dbbdd502c7a91df66befedfdeb0c03
This commit is contained in:
Flavio Percoco 2014-03-26 09:39:59 +01:00
parent 24b64624c7
commit b7908156a1
2 changed files with 8 additions and 2 deletions

View File

@ -4,7 +4,9 @@
# Options defined in marconi.transport.base
#
# (string value)
# Backend to use for authentication. For no auth, keep it
# empty. Existing strategies: keystone. See also the
# keystone_authtoken section below (string value)
#auth_strategy=

View File

@ -20,7 +20,11 @@ from oslo.config import cfg
_TRANSPORT_OPTIONS = (
cfg.StrOpt('auth_strategy', default=''),
cfg.StrOpt('auth_strategy', default='',
help=('Backend to use for authentication. '
'For no auth, keep it empty. '
'Existing strategies: keystone. '
'See also the keystone_authtoken section below')),
)