diff --git a/manifests/keystone/auth.pp b/manifests/keystone/auth.pp index 9544b196..463ba6bf 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -57,6 +57,9 @@ # [*admin_protocol*] # Protocol for admin endpoint. Optional. Defaults to 'http'. # +# [*service_description*] +# Description for keystone service. Optional. Defaults to 'OpenStack Image Service''. +# class glance::keystone::auth( $password, $email = 'glance@localhost', @@ -74,7 +77,8 @@ class glance::keystone::auth( $tenant = 'services', $public_protocol = 'http', $admin_protocol = 'http', - $internal_protocol = 'http' + $internal_protocol = 'http', + $service_description = 'OpenStack Image Service', ) { if $service_name == undef { @@ -92,7 +96,7 @@ class glance::keystone::auth( configure_user_role => $configure_user_role, configure_endpoint => $configure_endpoint, service_type => $service_type, - service_description => 'OpenStack Image Service', + service_description => $service_description, service_name => $real_service_name, region => $region, password => $password,