~ubuntu-branches/ubuntu/trusty/heat/trusty-security

« back to all changes in this revision

Viewing changes to etc/heat/heat-engine.conf

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-09-08 21:51:19 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130908215119-7tcek6gn73275x5k
Tags: upstream-2013.2~b3
ImportĀ upstreamĀ versionĀ 2013.2~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[DEFAULT]
2
 
# Show more verbose log output (sets INFO log level output)
3
 
verbose = True
4
 
 
5
 
# Show debugging output in logs (sets DEBUG log level output)
6
 
debug = True
7
 
 
8
 
# Turn off standard error logging
9
 
use_stderr = False
10
 
 
11
 
# Log to this file. Make sure the user running heat-api has
12
 
# permissions to write to this file!
13
 
log_file = /var/log/heat/engine.log
14
 
 
15
 
# Send logs to syslog (/dev/log) instead of to file specified
16
 
# by `log_file`
17
 
use_syslog = False
18
 
 
19
 
# Facility to use. If unset defaults to LOG_USER.
20
 
# syslog_log_facility = LOG_LOCAL0
21
 
 
22
 
# Keystone role for heat template-defined users
23
 
heat_stack_user_role = heat_stack_user
24
 
 
25
 
# Make instances connect to the heat services via https
26
 
# default to off since it will require images and host
27
 
# to be configured correctly to support ssl connections
28
 
instance_connection_is_secure = 0
29
 
 
30
 
# If is_secure is set to 1, certificate validation can
31
 
# be enabled or disabled
32
 
instance_connection_https_validate_certificates = 1
33
 
 
34
 
# The default user that heat creates in users for ssh
35
 
# administration is `ec2-user`, which is compatible with
36
 
# AWS CloudFormation. You can change it with instance_user
37
 
# instance_user = heat-admin
38
 
 
39
 
# URL for instances to connect for metadata
40
 
# ie the IP of the bridge device connecting the
41
 
# instances with the host and the bind_port of
42
 
# the CFN API
43
 
# NOTE : change this from 127.0.0.1 !!
44
 
heat_metadata_server_url = http://127.0.0.1:8000
45
 
 
46
 
# URL for instances to connect for notification
47
 
# of waitcondition events (ie via cfn-signal)
48
 
# e.g the IP of the bridge device connecting the
49
 
# instances with the host and the bind_port of
50
 
# the CFN API
51
 
# NOTE : change this from 127.0.0.1 !!
52
 
heat_waitcondition_server_url = http://127.0.0.1:8000/v1/waitcondition
53
 
 
54
 
# URL for instances to connect for publishing metric
55
 
# data (ie via cfn-push-stats)
56
 
# e.g the IP of the bridge device connecting the
57
 
# instances with the host and the bind_port of
58
 
# the heat-api-cloudwatch API
59
 
# NOTE : change this from 127.0.0.1 !!
60
 
heat_watch_server_url = http://127.0.0.1:8003
61
 
 
62
 
# The namespace for the custom backend. Must provide class Clients which will be
63
 
# imported. Defaults to OpenStack if none provided.
64
 
# cloud_backend=deltacloud_heat.client
65
 
 
66
 
sql_connection = mysql://heat:heat@localhost/heat
67
 
 
68
 
db_backend=heat.db.sqlalchemy.api
69
 
 
70
 
rpc_backend=heat.openstack.common.rpc.impl_qpid
71
 
 
72
 
auth_encryption_key=%ENCRYPTION_KEY%