Regenerate sample config file
The sample config file was regenerated using tox -r -e sample_config Change-Id: I2e0b12369742b9fbe2ec97725e8771af64f2b2a5
This commit is contained in:
parent
b11c072cfa
commit
ac4fa13ca1
@ -75,17 +75,16 @@
|
||||
#max_token_size=8192
|
||||
|
||||
# During a SQL upgrade member_role_id will be used to create a
|
||||
# new role that will replace records in the
|
||||
# user_tenant_membership table with explicit role grants.
|
||||
# After migration, the member_role_id will be used in the API
|
||||
# add_user_to_project. (string value)
|
||||
# new role that will replace records in the assignment table
|
||||
# with explicit role grants. After migration, the
|
||||
# member_role_id will be used in the API add_user_to_project.
|
||||
# (string value)
|
||||
#member_role_id=9fe2ff9ee4384b1894a90878d3e92bab
|
||||
|
||||
# During a SQL upgrade member_role_name will be used to create
|
||||
# a new role that will replace records in the
|
||||
# user_tenant_membership table with explicit role grants.
|
||||
# After migration, member_role_name will be ignored. (string
|
||||
# value)
|
||||
# a new role that will replace records in the assignment table
|
||||
# with explicit role grants. After migration, member_role_name
|
||||
# will be ignored. (string value)
|
||||
#member_role_name=_member_
|
||||
|
||||
# The value passed as the keyword "rounds" to passlib's
|
||||
@ -144,7 +143,7 @@
|
||||
#allowed_rpc_exception_modules=oslo.messaging.exceptions,nova.exception,cinder.exception,exceptions
|
||||
|
||||
# Qpid broker hostname. (string value)
|
||||
#qpid_hostname=localhost
|
||||
#qpid_hostname=keystone
|
||||
|
||||
# Qpid broker port. (integer value)
|
||||
#qpid_port=5672
|
||||
@ -201,7 +200,7 @@
|
||||
|
||||
# The RabbitMQ broker address where a single node is used.
|
||||
# (string value)
|
||||
#rabbit_host=localhost
|
||||
#rabbit_host=keystone
|
||||
|
||||
# The RabbitMQ broker port where a single node is used.
|
||||
# (integer value)
|
||||
@ -613,23 +612,27 @@
|
||||
# Options defined in oslo.db
|
||||
#
|
||||
|
||||
# The file name to use with SQLite (string value)
|
||||
# The file name to use with SQLite. (string value)
|
||||
#sqlite_db=oslo.sqlite
|
||||
|
||||
# If True, SQLite uses synchronous mode (boolean value)
|
||||
# If True, SQLite uses synchronous mode. (boolean value)
|
||||
#sqlite_synchronous=true
|
||||
|
||||
# The backend to use for db (string value)
|
||||
# The back end to use for the database. (string value)
|
||||
# Deprecated group/name - [DEFAULT]/db_backend
|
||||
#backend=sqlalchemy
|
||||
|
||||
# The SQLAlchemy connection string used to connect to the
|
||||
# database (string value)
|
||||
# The SQLAlchemy connection string to use to connect to the
|
||||
# database. (string value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_connection
|
||||
# Deprecated group/name - [DATABASE]/sql_connection
|
||||
# Deprecated group/name - [sql]/connection
|
||||
#connection=<None>
|
||||
|
||||
# The SQLAlchemy connection string to use to connect to the
|
||||
# slave database. (string value)
|
||||
#slave_connection=<None>
|
||||
|
||||
# The SQL mode to be used for MySQL sessions. This option,
|
||||
# including the default, overrides any server-set SQL mode. To
|
||||
# use whatever SQL mode is set by the server configuration,
|
||||
@ -637,75 +640,76 @@
|
||||
# value)
|
||||
#mysql_sql_mode=TRADITIONAL
|
||||
|
||||
# Timeout before idle sql connections are reaped (integer
|
||||
# Timeout before idle SQL connections are reaped. (integer
|
||||
# value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_idle_timeout
|
||||
# Deprecated group/name - [DATABASE]/sql_idle_timeout
|
||||
# Deprecated group/name - [sql]/idle_timeout
|
||||
#idle_timeout=3600
|
||||
|
||||
# Minimum number of SQL connections to keep open in a pool
|
||||
# Minimum number of SQL connections to keep open in a pool.
|
||||
# (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_min_pool_size
|
||||
# Deprecated group/name - [DATABASE]/sql_min_pool_size
|
||||
#min_pool_size=1
|
||||
|
||||
# Maximum number of SQL connections to keep open in a pool
|
||||
# Maximum number of SQL connections to keep open in a pool.
|
||||
# (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_max_pool_size
|
||||
# Deprecated group/name - [DATABASE]/sql_max_pool_size
|
||||
#max_pool_size=<None>
|
||||
|
||||
# Maximum db connection retries during startup. (setting -1
|
||||
# implies an infinite retry count) (integer value)
|
||||
# Maximum db connection retries during startup. Set to -1 to
|
||||
# specify an infinite retry count. (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_max_retries
|
||||
# Deprecated group/name - [DATABASE]/sql_max_retries
|
||||
#max_retries=10
|
||||
|
||||
# Interval between retries of opening a sql connection
|
||||
# Interval between retries of opening a SQL connection.
|
||||
# (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_retry_interval
|
||||
# Deprecated group/name - [DATABASE]/reconnect_interval
|
||||
#retry_interval=10
|
||||
|
||||
# If set, use this value for max_overflow with sqlalchemy
|
||||
# If set, use this value for max_overflow with SQLAlchemy.
|
||||
# (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_max_overflow
|
||||
# Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
|
||||
#max_overflow=<None>
|
||||
|
||||
# Verbosity of SQL debugging information. 0=None,
|
||||
# 100=Everything (integer value)
|
||||
# Verbosity of SQL debugging information: 0=None,
|
||||
# 100=Everything. (integer value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_connection_debug
|
||||
#connection_debug=0
|
||||
|
||||
# Add python stack traces to SQL as comment strings (boolean
|
||||
# Add Python stack traces to SQL as comment strings. (boolean
|
||||
# value)
|
||||
# Deprecated group/name - [DEFAULT]/sql_connection_trace
|
||||
#connection_trace=false
|
||||
|
||||
# If set, use this value for pool_timeout with sqlalchemy
|
||||
# If set, use this value for pool_timeout with SQLAlchemy.
|
||||
# (integer value)
|
||||
# Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
|
||||
#pool_timeout=<None>
|
||||
|
||||
# Enable the experimental use of database reconnect on
|
||||
# connection lost (boolean value)
|
||||
# connection lost. (boolean value)
|
||||
#use_db_reconnect=false
|
||||
|
||||
# seconds between db connection retries (integer value)
|
||||
# Seconds between database connection retries. (integer value)
|
||||
#db_retry_interval=1
|
||||
|
||||
# Whether to increase interval between db connection retries,
|
||||
# up to db_max_retry_interval (boolean value)
|
||||
# If True, increases the interval between database connection
|
||||
# retries up to db_max_retry_interval. (boolean value)
|
||||
#db_inc_retry_interval=true
|
||||
|
||||
# max seconds between db connection retries, if
|
||||
# db_inc_retry_interval is enabled (integer value)
|
||||
# If db_inc_retry_interval is set, the maximum seconds between
|
||||
# database connection retries. (integer value)
|
||||
#db_max_retry_interval=10
|
||||
|
||||
# maximum db connection retries before error is raised.
|
||||
# (setting -1 implies an infinite retry count) (integer value)
|
||||
# Maximum database connection retries before error is raised.
|
||||
# Set to -1 to specify an infinite retry count. (integer
|
||||
# value)
|
||||
#db_max_retries=20
|
||||
|
||||
|
||||
@ -822,7 +826,7 @@
|
||||
#
|
||||
|
||||
# URL for connecting to the LDAP server. (string value)
|
||||
#url=ldap://localhost
|
||||
#url=ldap://keystone
|
||||
|
||||
# User BindDN to query the LDAP server. (string value)
|
||||
#user=<None>
|
||||
@ -948,59 +952,75 @@
|
||||
#user_additional_attribute_mapping=
|
||||
|
||||
# Search base for projects (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_tree_dn
|
||||
#project_tree_dn=<None>
|
||||
|
||||
# LDAP search filter for projects. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_filter
|
||||
#project_filter=<None>
|
||||
|
||||
# LDAP objectclass for projects. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_objectclass
|
||||
#project_objectclass=groupOfNames
|
||||
|
||||
# LDAP attribute mapped to project id. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_id_attribute
|
||||
#project_id_attribute=cn
|
||||
|
||||
# LDAP attribute mapped to project membership for user.
|
||||
# (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_member_attribute
|
||||
#project_member_attribute=member
|
||||
|
||||
# LDAP attribute mapped to project name. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_name_attribute
|
||||
#project_name_attribute=ou
|
||||
|
||||
# LDAP attribute mapped to project description. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_desc_attribute
|
||||
#project_desc_attribute=description
|
||||
|
||||
# LDAP attribute mapped to project enabled. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_enabled_attribute
|
||||
#project_enabled_attribute=enabled
|
||||
|
||||
# LDAP attribute mapped to project domain_id. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_domain_id_attribute
|
||||
#project_domain_id_attribute=businessCategory
|
||||
|
||||
# List of attributes stripped off the project on update. (list
|
||||
# value)
|
||||
# Deprecated group/name - [ldap]/tenant_attribute_ignore
|
||||
#project_attribute_ignore=
|
||||
|
||||
# Allow project creation in LDAP backend. (boolean value)
|
||||
# Deprecated group/name - [ldap]/tenant_allow_create
|
||||
#project_allow_create=true
|
||||
|
||||
# Allow project update in LDAP backend. (boolean value)
|
||||
# Deprecated group/name - [ldap]/tenant_allow_update
|
||||
#project_allow_update=true
|
||||
|
||||
# Allow project deletion in LDAP backend. (boolean value)
|
||||
# Deprecated group/name - [ldap]/tenant_allow_delete
|
||||
#project_allow_delete=true
|
||||
|
||||
# If true, Keystone uses an alternative method to determine if
|
||||
# a project is enabled or not by checking if they are a member
|
||||
# of the "project_enabled_emulation_dn" group. (boolean value)
|
||||
# Deprecated group/name - [ldap]/tenant_enabled_emulation
|
||||
#project_enabled_emulation=false
|
||||
|
||||
# DN of the group entry to hold enabled projects when using
|
||||
# enabled emulation. (string value)
|
||||
# Deprecated group/name - [ldap]/tenant_enabled_emulation_dn
|
||||
#project_enabled_emulation_dn=<None>
|
||||
|
||||
# Additional attribute mappings for projects. Attribute
|
||||
# mapping format is <ldap_attr>:<user_attr>, where ldap_attr
|
||||
# is the attribute in the LDAP entry and user_attr is the
|
||||
# Identity API attribute. (list value)
|
||||
# Deprecated group/name - [ldap]/tenant_additional_attribute_mapping
|
||||
#project_additional_attribute_mapping=
|
||||
|
||||
# Search base for roles. (string value)
|
||||
@ -1274,7 +1294,7 @@
|
||||
|
||||
# SSL certificate subject (auto generated certificate).
|
||||
# (string value)
|
||||
#cert_subject=/C=US/ST=Unset/L=Unset/O=Unset/CN=localhost
|
||||
#cert_subject=/C=US/ST=Unset/L=Unset/O=Unset/CN=keystone
|
||||
|
||||
|
||||
[stats]
|
||||
|
Loading…
x
Reference in New Issue
Block a user