Description of API configuration options
Configuration option = Default value Description
[DEFAULT]
= None (StrOpt) The base admin endpoint URL for Keystone that is advertised to clients (NOTE: this does NOT affect how Keystone listens for connections). Defaults to the base host URL of the request. E.g. a request to http://server:35357/v3/users will default to http://server:35357. You should only need to set this value if the base URL contains a path (e.g. /prefix/v3) or the endpoint should be found on a different server.
= ADMIN (StrOpt) A "shared secret" that can be used to bootstrap Keystone. This "token" does not represent a user, and carries no explicit authorization. To disable in production (highly recommended), remove AdminTokenAuthMiddleware from your paste application pipelines (for example, in keystone-paste.ini).
= True (BoolOpt) Set this to false if you want to enable the ability for user, group and project entities to be moved between domains by updating their domain_id. Allowing such movement is not recommended if the scope of a domain admin is being restricted by use of an appropriate policy file (see policy.v3cloudsample as an example).
= None (IntOpt) The maximum number of entities that will be returned in a collection, with no limit set by default. This global limit may be then overridden for a specific driver, by specifying a list_limit in the appropriate section (e.g. [assignment]).
= 64 (IntOpt) Limit the sizes of user & project ID/names.
= 5 (IntOpt) Maximum depth of the project hierarchy. WARNING: setting it to a large value may adversely impact performance.
= 8192 (IntOpt) Similar to max_param_size, but provides an exception for token values.
= 9fe2ff9ee4384b1894a90878d3e92bab (StrOpt) Similar to the member_role_name option, this represents the default role ID used to associate users with their default projects in the v2 API. This will be used as the explicit role where one is not specified by the v2 API.
= _member_ (StrOpt) This is the role name used in combination with the member_role_id option; see that option for more detail.
= None (StrOpt) The base public endpoint URL for Keystone that is advertised to clients (NOTE: this does NOT affect how Keystone listens for connections). Defaults to the base host URL of the request. E.g. a request to http://server:5000/v3/users will default to http://server:5000. You should only need to set this value if the base URL contains a path (e.g. /prefix/v3) or the endpoint should be found on a different server.
= None (StrOpt) The HTTP header used to determine the scheme for the original request, even if it was removed by an SSL terminating proxy. Typical value is "HTTP_X_FORWARDED_PROTO".
= False (BoolOpt) If set to true, strict password length checking is performed for password manipulation. If a password exceeds the maximum length, the operation will fail with an HTTP 403 Forbidden error. If set to false, passwords are automatically truncated to the maximum length.
[endpoint_filter]
= sql (StrOpt) Entrypoint for the endpoint filter backend driver in the keystone.endpoint_filter namespace.
= True (BoolOpt) Toggle to return all active endpoints if no filter exists.
[endpoint_policy]
= sql (StrOpt) Entrypoint for the endpoint policy backend driver in the keystone.endpoint_policy namespace.
= True (BoolOpt) Enable endpoint_policy functionality.
[eventlet_server]
= 0.0.0.0 (StrOpt) The IP address of the network interface for the admin service to listen on.
= 35357 (IntOpt) The port number which the admin service listens on.
= None (IntOpt) The number of worker processes to serve the admin eventlet application. Defaults to number of CPUs (minimum of 2).
= 900 (IntOpt) Timeout for socket operations on a client connection. If an incoming connection is idle for this number of seconds it will be closed. A value of '0' means wait forever.
= 0.0.0.0 (StrOpt) The IP address of the network interface for the public service to listen on.
= 5000 (IntOpt) The port number which the public service listens on.
= None (IntOpt) The number of worker processes to serve the public eventlet application. Defaults to number of CPUs (minimum of 2).
= False (BoolOpt) Set this to true if you want to enable TCP_KEEPALIVE on server sockets, i.e. sockets used by the Keystone wsgi server for client connections.
= 600 (IntOpt) Sets the value of TCP_KEEPIDLE in seconds for each server socket. Only applies if tcp_keepalive is true.
= True (BoolOpt) If set to false, disables keepalives on the server; all connections will be closed after serving one request.
[oslo_middleware]
= 114688 (IntOpt) The maximum body size for each request, in bytes.
= X-Forwarded-Proto (StrOpt) The HTTP Header that will be used to determine what the original request protocol scheme was, even if it was hidden by an SSL termination proxy.
[paste_deploy]
= keystone-paste.ini (StrOpt) Name of the paste configuration file that defines the available pipelines.
[resource]
= None (IntOpt) TTL (in seconds) to cache resource data. This has no effect unless global caching is enabled.
= True (BoolOpt) Toggle for resource caching. This has no effect unless global caching is enabled.
= None (StrOpt) Entrypoint for the resource backend driver in the keystone.resource namespace. If a resource driver is not specified, the assignment driver will choose the resource driver.
= None (IntOpt) Maximum number of entities that will be returned in a resource collection.