Expose configure_service
This parameter has been implemented in the underlying defined resource type but was not configurable. Change-Id: I006a0e3797bcb047bebff5404984c67fec24c11d
This commit is contained in:
parent
4094046f7d
commit
bab82e1048
@ -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_name*]
|
||||
# (Optional) Name of the service.
|
||||
# Defaults 'neutron'.
|
||||
@ -93,6 +97,7 @@ class neutron::keystone::auth (
|
||||
Boolean $configure_endpoint = true,
|
||||
Boolean $configure_user = true,
|
||||
Boolean $configure_user_role = true,
|
||||
Boolean $configure_service = true,
|
||||
String[1] $service_name = 'neutron',
|
||||
String[1] $service_type = 'network',
|
||||
String[1] $service_description = 'OpenStack Networking Service',
|
||||
@ -110,6 +115,7 @@ class neutron::keystone::auth (
|
||||
configure_user => $configure_user,
|
||||
configure_user_role => $configure_user_role,
|
||||
configure_endpoint => $configure_endpoint,
|
||||
configure_service => $configure_service,
|
||||
service_type => $service_type,
|
||||
service_description => $service_description,
|
||||
service_name => $service_name,
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
The new ``neutron::keystone::auth::configure_service`` parameter has been
|
||||
added.
|
@ -15,6 +15,7 @@ describe 'neutron::keystone::auth' do
|
||||
:configure_user => true,
|
||||
:configure_user_role => true,
|
||||
:configure_endpoint => true,
|
||||
:configure_service => true,
|
||||
:service_name => 'neutron',
|
||||
:service_type => 'network',
|
||||
:service_description => 'OpenStack Networking Service',
|
||||
@ -44,6 +45,7 @@ describe 'neutron::keystone::auth' do
|
||||
:configure_endpoint => false,
|
||||
:configure_user => false,
|
||||
:configure_user_role => false,
|
||||
:configure_service => false,
|
||||
:service_description => 'Alternative OpenStack Networking Service',
|
||||
:service_name => 'alt_service',
|
||||
:service_type => 'alt_network',
|
||||
@ -57,6 +59,7 @@ describe 'neutron::keystone::auth' do
|
||||
:configure_user => false,
|
||||
:configure_user_role => false,
|
||||
:configure_endpoint => false,
|
||||
:configure_service => false,
|
||||
:service_name => 'alt_service',
|
||||
:service_type => 'alt_network',
|
||||
:service_description => 'Alternative OpenStack Networking Service',
|
||||
|
Loading…
x
Reference in New Issue
Block a user