Expose configure_service

This parameter has been implemented in the underlying defined resource
type but was not configurable.

Change-Id: I10cd07571763281eda7c5dafcd75ad63b12ea469
This commit is contained in:
Takashi Kajinami 2024-10-12 12:21:28 +09:00
parent 682742d6fb
commit 012583523e
3 changed files with 14 additions and 0 deletions

View File

@ -43,6 +43,10 @@
# (Optional) Should the admin role be configured for the service user?
# Defaults to true.
#
# [*configure_service*]
# (Optional) Should the service be configurd?
# Defaults to True
#
# [*service_type*]
# (Optional) Type of service.
# Defaults to 'infra-optim'.
@ -85,6 +89,7 @@ class watcher::keystone::auth (
Boolean $configure_endpoint = true,
Boolean $configure_user = true,
Boolean $configure_user_role = true,
Boolean $configure_service = true,
Optional[String[1]] $service_name = undef,
String[1] $service_description = 'Infrastructure Optimization service',
String[1] $service_type = 'infra-optim',
@ -104,6 +109,7 @@ class watcher::keystone::auth (
configure_user => $configure_user,
configure_user_role => $configure_user_role,
configure_endpoint => $configure_endpoint,
configure_service => $configure_service,
service_name => $real_service_name,
service_type => $service_type,
service_description => $service_description,

View File

@ -0,0 +1,5 @@
---
features:
- |
The new ``watcher::keystone::auth::configure_service`` parameter has been
added.

View File

@ -15,6 +15,7 @@ describe 'watcher::keystone::auth' do
:configure_user => true,
:configure_user_role => true,
:configure_endpoint => true,
:configure_service => true,
:service_name => 'watcher',
:service_type => 'infra-optim',
:service_description => 'Infrastructure Optimization service',
@ -44,6 +45,7 @@ describe 'watcher::keystone::auth' do
:configure_endpoint => false,
:configure_user => false,
:configure_user_role => false,
:configure_service => false,
:service_description => 'Alternative Infrastructure Optimization service',
:service_name => 'alt_service',
:service_type => 'alt_infra-optim',
@ -57,6 +59,7 @@ describe 'watcher::keystone::auth' do
:configure_user => false,
:configure_user_role => false,
:configure_endpoint => false,
:configure_service => false,
:service_name => 'alt_service',
:service_type => 'alt_infra-optim',
:service_description => 'Alternative Infrastructure Optimization service',