From 049b28dff50f68a09b8c1e0bfde8846749805bc5 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Sun, 24 Feb 2019 13:57:27 +0100 Subject: [PATCH] Change keystone v2.0 to v3 Change-Id: Ic526953e2096149a3d580cf7dabf961fe8357569 --- examples/site.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/site.pp b/examples/site.pp index 44857e2e..374abe74 100644 --- a/examples/site.pp +++ b/examples/site.pp @@ -24,14 +24,14 @@ class { '::trove': class { '::trove::api': bind_host => '10.0.0.1', - auth_url => 'https://identity.openstack.org:5000/v2.0', + auth_url => 'https://identity.openstack.org:5000/v3', keystone_password => 'verysecrete' } class { '::trove::conductor': - auth_url => 'https://identity.openstack.org:5000/v2.0' + auth_url => 'https://identity.openstack.org:5000/v3' } class { '::trove::taskmanager': - auth_url => 'https://identity.openstack.org:5000/v2.0' + auth_url => 'https://identity.openstack.org:5000/v3' }