703285dca3
Change-Id: I0782dafd785c21e96e4063ab4604dd3703c7c436
73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = True
|
|
|
|
# Turn off standard error logging
|
|
use_stderr = False
|
|
|
|
# Log to this file. Make sure the user running heat-api has
|
|
# permissions to write to this file!
|
|
log_file = /var/log/heat/engine.log
|
|
|
|
# Send logs to syslog (/dev/log) instead of to file specified
|
|
# by `log_file`
|
|
use_syslog = False
|
|
|
|
# Facility to use. If unset defaults to LOG_USER.
|
|
# syslog_log_facility = LOG_LOCAL0
|
|
|
|
# Keystone role for heat template-defined users
|
|
heat_stack_user_role = heat_stack_user
|
|
|
|
# Make instances connect to the heat services via https
|
|
# default to off since it will require images and host
|
|
# to be configured correctly to support ssl connections
|
|
instance_connection_is_secure = 0
|
|
|
|
# If is_secure is set to 1, certificate validation can
|
|
# be enabled or disabled
|
|
instance_connection_https_validate_certificates = 1
|
|
|
|
# The default user that heat creates in users for ssh
|
|
# administration is `ec2-user`, which is compatible with
|
|
# AWS CloudFormation. You can change it with instance_user
|
|
# instance_user = heat-admin
|
|
|
|
# URL for instances to connect for metadata
|
|
# ie the IP of the bridge device connecting the
|
|
# instances with the host and the bind_port of
|
|
# the CFN API
|
|
# NOTE : change this from 127.0.0.1 !!
|
|
heat_metadata_server_url = http://127.0.0.1:8000
|
|
|
|
# URL for instances to connect for notification
|
|
# of waitcondition events (ie via cfn-signal)
|
|
# e.g the IP of the bridge device connecting the
|
|
# instances with the host and the bind_port of
|
|
# the CFN API
|
|
# NOTE : change this from 127.0.0.1 !!
|
|
heat_waitcondition_server_url = http://127.0.0.1:8000/v1/waitcondition
|
|
|
|
# URL for instances to connect for publishing metric
|
|
# data (ie via cfn-push-stats)
|
|
# e.g the IP of the bridge device connecting the
|
|
# instances with the host and the bind_port of
|
|
# the heat-api-cloudwatch API
|
|
# NOTE : change this from 127.0.0.1 !!
|
|
heat_watch_server_url = http://127.0.0.1:8003
|
|
|
|
# The namespace for the custom backend. Must provide class Clients which will be
|
|
# imported. Defaults to OpenStack if none provided.
|
|
# cloud_backend=deltacloud_heat.client
|
|
|
|
sql_connection = mysql://heat:heat@localhost/heat
|
|
|
|
db_backend=heat.db.sqlalchemy.api
|
|
|
|
rpc_backend=heat.openstack.common.rpc.impl_qpid
|
|
|
|
auth_encryption_key=%ENCRYPTION_KEY%
|