Merge "keystone/auth: make service description configurable"

This commit is contained in:
Jenkins 2015-07-14 19:40:04 +00:00 committed by Gerrit Code Review
commit 9bec6c4066
1 changed files with 19 additions and 15 deletions

View File

@ -39,6 +39,9 @@
# [*service_type*]
# Type of service. Defaults to 'management'.
#
# [*service_description*]
# Description for keystone service. Optional. Defaults to 'Tuskar Management Service'.
#
# [*public_protocol*]
# Protocol for public endpoint. Defaults to 'http'.
#
@ -74,6 +77,7 @@ class tuskar::keystone::auth (
$tenant = 'services',
$configure_endpoint = true,
$service_type = 'management',
$service_description = 'Tuskar Management Service',
$public_protocol = 'http',
$public_address = '127.0.0.1',
$admin_protocol = 'http',
@ -99,7 +103,7 @@ class tuskar::keystone::auth (
configure_user_role => true,
configure_endpoint => $configure_endpoint,
service_type => $service_type,
service_description => 'Tuskar Management Service',
service_description => $service_description,
region => $region,
password => $password,
email => $email,