]> review.fuel-infra Code Review - puppet-modules/puppet-ceilometer.git/commitdiff
Add admin user/tenant/password to authtoken config
authorFrançois Charlier <fcharlier@ploup.net>
Mon, 10 Dec 2012 17:19:02 +0000 (18:19 +0100)
committerFrançois Charlier <fcharlier@ploup.net>
Mon, 10 Dec 2012 17:19:02 +0000 (18:19 +0100)
manifests/api.pp

index 7f5addb10c874bc5c0de0e0842fd8acdb53fa67d..3df04eba9f2e27cac2823c61e51e4d21e00e021e 100644 (file)
@@ -34,8 +34,11 @@ class ceilometer::api(
   }
 
   ceilometer_config {
-    'keystone_authtoken/auth_host' : value => $keystone_host;
-    'keystone_authtoken/auth_port' : value => $keystone_port;
-    'keystone_authtoken/protocol'  : value => $keystone_protocol;
+    'keystone_authtoken/auth_host'         : value => $keystone_host;
+    'keystone_authtoken/auth_port'         : value => $keystone_port;
+    'keystone_authtoken/protocol'          : value => $keystone_protocol;
+    'keystone_authtoken/admin_tenant_name' : value => 'services';
+    'keystone_authtoken/admin_user'        : value => $keystone_user;
+    'keystone_authtoken/admin_password'    : value => $keystone_password;
   }
 }