From 45534e2daf558285c0e3bc28cf6a0a387f96a993 Mon Sep 17 00:00:00 2001 From: Zack Smith Date: Mon, 6 Aug 2012 13:29:47 -0700 Subject: [PATCH] Update keystone bind_host value to 0.0.0.0 Currently this is configured as 127.0.0.1 which disallows Identity Service API calls from remote hosts. Updated to 0.0.0.0 so as to allow remote connections but not break any 127.0.0.1 requests. This is actually the default value but rather then undef the param I am just changing it. --- manifests/all.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/all.pp b/manifests/all.pp index 347ca0b..9543db2 100644 --- a/manifests/all.pp +++ b/manifests/all.pp @@ -116,7 +116,7 @@ class openstack::all( # set up keystone class { 'keystone': admin_token => $keystone_admin_token, - bind_host => '127.0.0.1', + bind_host => '0.0.0.0', log_verbose => $verbose, log_debug => $verbose, catalog_type => 'sql',