Improve keystone.conf [endpoint_filter] documentation

Change-Id: I1b8a75ad859eeaf1cd3e81cc6eddd0bdb505586e
This commit is contained in:
Dolph Mathews 2016-06-29 14:20:01 -05:00
parent a2d1fbad6f
commit bcbc43e322

View File

@ -19,15 +19,20 @@ driver = cfg.StrOpt(
'driver', 'driver',
default='sql', default='sql',
help=utils.fmt(""" help=utils.fmt("""
Entrypoint for the endpoint filter backend driver in the Entry point for the endpoint filter driver in the
keystone.endpoint_filter namespace. `keystone.endpoint_filter` namespace. Only a `sql` option is provided by
keystone, so there is no reason to set this unless you are providing a custom
entry point.
""")) """))
return_all_endpoints_if_no_filter = cfg.BoolOpt( return_all_endpoints_if_no_filter = cfg.BoolOpt(
'return_all_endpoints_if_no_filter', 'return_all_endpoints_if_no_filter',
default=True, default=True,
help=utils.fmt(""" help=utils.fmt("""
Toggle to return all active endpoints if no filter exists. This controls keystone's behavior if the configured endpoint filters do not
result in any endpoints for a user + project pair (and therefore a potentially
empty service catalog). If set to true, keystone will return the entire service
catalog. If set to false, keystone will return an empty service catalog.
""")) """))