Tidy template, pass config values for logging

This commit is contained in:
James Page
2013-10-17 15:41:48 +01:00
parent d6c2fd8539
commit 3327961f7c
3 changed files with 20 additions and 18 deletions

View File

@@ -1,16 +1,16 @@
[DEFAULT]
debug=True
verbose=True
metering_secret={{ metering_secret }}
control_exchange=ceilometer
metering_api_port={{ service_port }}
rabbit_host={{ rabbit_host }}
rabbit_port=5672
rabbit_userid={{ rabbit_userid }}
rabbit_password={{ rabbit_password }}
rabbit_virtual_host={{ rabbit_virtual_host }}
database_connection=mongodb://{{ db_host }}:{{ db_port }}/{{ db_name }}
os_auth_url=http://{{ keystone_host }}:{{ keystone_port }}/v2.0
debug = {{ debug }}
verbose = {{ verbose }}
metering_secret = {{ metering_secret }}
control_exchange = ceilometer
metering_api_port = {{ service_port }}
rabbit_host = {{ rabbit_host }}
rabbit_port = 5672
rabbit_userid = {{ rabbit_userid }}
rabbit_password = {{ rabbit_password }}
rabbit_virtual_host = {{ rabbit_virtual_host }}
database_connection = mongodb://{{ db_host }}:{{ db_port }}/{{ db_name }}
os_auth_url = http://{{ keystone_host }}:{{ keystone_port }}/v2.0
os_tenant_name = {{ keystone_os_tenant }}
os_username = {{ keystone_os_username }}
os_password = {{ keystone_os_password }}