From 4b4903af5bb0672c63336052769e5b3ee208ee68 Mon Sep 17 00:00:00 2001 From: Michal Skalski Date: Tue, 22 Mar 2016 16:19:56 +0100 Subject: [PATCH] Use the same auth_uri as for heat Signed-off-by: Michal Skalski --- deployment_scripts/puppet/manifests/tacker.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/puppet/manifests/tacker.pp b/deployment_scripts/puppet/manifests/tacker.pp index 2186a7b..46e110f 100644 --- a/deployment_scripts/puppet/manifests/tacker.pp +++ b/deployment_scripts/puppet/manifests/tacker.pp @@ -24,7 +24,7 @@ $internal_auth_address = get_ssl_property($ssl_hash, {}, 'keystone', 'internal' $admin_auth_protocol = get_ssl_property($ssl_hash, {}, 'keystone', 'admin', 'protocol', 'http') $admin_auth_address = get_ssl_property($ssl_hash, {}, 'keystone', 'admin', 'hostname', [hiera('service_endpoint', ''), $management_vip]) -$auth_uri = "${internal_auth_protocol}://${internal_auth_address}:5000/" +$auth_uri = "${internal_auth_protocol}://${internal_auth_address}:5000/v2.0/" $identity_uri = "${admin_auth_protocol}://${admin_auth_address}:35357/" $database_vip = hiera('database_vip', undef)