From 3cd9c67864aed4315019bf3caee007000a6294fa Mon Sep 17 00:00:00 2001 From: Florian Haas Date: Tue, 9 Jul 2013 10:37:53 +0000 Subject: [PATCH] Add Keystone password to nova-api, and enable the service --- manifests/nova/api.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/nova/api.pp b/manifests/nova/api.pp index 54d8a0a..e0c0a5d 100644 --- a/manifests/nova/api.pp +++ b/manifests/nova/api.pp @@ -17,11 +17,12 @@ class kickstack::nova::api inherits kickstack { } class { '::nova::api': + enabled => true, auth_strategy => 'keystone', auth_host => $auth_host, admin_tenant_name => $kickstack::keystone_service_tenant, admin_user => 'nova', - admin_password => $service_password, + admin_password => $admin_password, enabled_apis => 'ec2,osapi_compute,metadata', quantum_metadata_proxy_shared_secret => $secret }