Use consistent service description

Change-Id: I0a0271139563e2c75cc54fa8957a2a51f2dd0606
This commit is contained in:
Takashi Kajinami 2022-02-02 23:21:30 +09:00
parent 28e1de1ec9
commit 6a070a817f
2 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@
#
# [*service_description*]
# (Optional) Description of the service.
# Default to '{{cookiecutter.project_name}} FIXME Service'
# Default to 'OpenStack FIXME Service'
#
# [*public_url*]
# (Optional) The endpoint's public url.
@ -75,7 +75,7 @@ class {{cookiecutter.project_name}}::keystone::auth (
$configure_user = true,
$configure_user_role = true,
$service_name = '{{cookiecutter.project_name}}',
$service_description = '{{cookiecutter.project_name}} FIXME Service',
$service_description = 'OpenStack FIXME Service',
$service_type = 'FIXME',
$region = 'RegionOne',
$public_url = 'http://127.0.0.1:FIXME',

View File

@ -17,7 +17,7 @@ describe '{{cookiecutter.project_name}}::keystone::auth' do
:configure_endpoint => true,
:service_name => '{{cookiecutter.project_name}}',
:service_type => 'FIXME',
:service_description => '{{cookiecutter.project_name}} FIXME Service',
:service_description => 'OpenStack FIXME Service',
:region => 'RegionOne',
:auth_name => '{{cookiecutter.project_name}}',
:password => '{{cookiecutter.project_name}}_password',
@ -38,7 +38,7 @@ describe '{{cookiecutter.project_name}}::keystone::auth' do
:configure_endpoint => false,
:configure_user => false,
:configure_user_role => false,
:service_description => 'Alternative {{cookiecutter.project_name}} FIXME Service',
:service_description => 'Alternative OpenStack FIXME Service',
:service_name => 'alt_service',
:service_type => 'alt_FIXME',
:region => 'RegionTwo',
@ -53,7 +53,7 @@ describe '{{cookiecutter.project_name}}::keystone::auth' do
:configure_endpoint => false,
:service_name => 'alt_service',
:service_type => 'alt_FIXME',
:service_description => 'Alternative {{cookiecutter.project_name}} FIXME Service',
:service_description => 'Alternative OpenStack FIXME Service',
:region => 'RegionTwo',
:auth_name => 'alt_{{cookiecutter.project_name}}',
:password => '{{cookiecutter.project_name}}_password',