Fix heat.conf template bind_host parameter
The bind_host parameter was commented out in the Mitaka template. This
caused heat to not successfully start. This patch solves the issue by
simply uncommenting the lines that were commented out.
Change-Id: I2530d35c0789c95fb6851e1cf824e650c78c9aa9
diff --git a/heat/files/mitaka/heat.conf.Debian b/heat/files/mitaka/heat.conf.Debian
index 8b40a90..38b0ab0 100644
--- a/heat/files/mitaka/heat.conf.Debian
+++ b/heat/files/mitaka/heat.conf.Debian
@@ -203,7 +203,7 @@
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
-#bind_host = {{ server.bind.api.address }}
+bind_host = {{ server.bind.api.address }}
# The port on which the server will listen. (integer value)
#bind_port=8004
@@ -238,7 +238,7 @@
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
-#bind_host = {{ server.bind.api_cfn.address }}
+bind_host = {{ server.bind.api_cfn.address }}
# The port on which the server will listen. (integer value)
#bind_port=8000
@@ -273,7 +273,7 @@
# Address to bind the server. Useful when selecting a
# particular network interface. (string value)
-#bind_host = {{ server.bind.api_cloudwatch.address }}
+bind_host = {{ server.bind.api_cloudwatch.address }}
# The port on which the server will listen. (integer value)
#bind_port=8003
@@ -729,4 +729,4 @@
api_server={{ client.api.host }}
api_port={{ client.api.port }}
-{%- endif %}
\ No newline at end of file
+{%- endif %}