From: François Charlier Date: Mon, 10 Dec 2012 17:19:02 +0000 (+0100) Subject: Add admin user/tenant/password to authtoken config X-Git-Tag: grizzly-eol~45 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=530a91160acd224ffbe99e60f2b5f0a1a723c0ec;p=puppet-modules%2Fpuppet-ceilometer.git Add admin user/tenant/password to authtoken config --- diff --git a/manifests/api.pp b/manifests/api.pp index 7f5addb..3df04eb 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -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; } }