From 212676a48ac6ddd4beda022e76a895c02c671352 Mon Sep 17 00:00:00 2001 From: Ivan Chavero Date: Fri, 13 Jun 2014 03:29:51 -0600 Subject: [PATCH] Add CONFIG_CONTROLLER_HOST to heat cfn config The if the bind_host value is not explicitly stated in the configurtion the default is 127.0.0.1 Change-Id: Ide3f9c8bdfbfa7f4aa40ac05a8f9138ee8e3106f Fixes: rhbz#1054353 --- packstack/puppet/templates/heat_cfn.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packstack/puppet/templates/heat_cfn.pp b/packstack/puppet/templates/heat_cfn.pp index 18100fa31..eae4f7a65 100644 --- a/packstack/puppet/templates/heat_cfn.pp +++ b/packstack/puppet/templates/heat_cfn.pp @@ -1,3 +1,10 @@ class { 'heat::api_cfn': } + +class { 'heat::keystone::auth_cfn': + admin_address => '%(CONFIG_CONTROLLER_HOST)s', + public_address => '%(CONFIG_CONTROLLER_HOST)s', + internal_address => '%(CONFIG_CONTROLLER_HOST)s', + password => '%(CONFIG_HEAT_KS_PW)s' +}