Drop redundant default of send_service_user_token
The option defaults to False, so we don't need the explicit default and can replace it by os_service_default fact. Change-Id: I1425802e4047f1bb79c90a1567bd512696dc5a2d
This commit is contained in:
parent
0db5333328
commit
ffdc85e1de
@ -34,7 +34,7 @@
|
||||
#
|
||||
# [*send_service_user_token*]
|
||||
# (Optional) The service uses service token feature when this is set as true
|
||||
# Defaults to 'false'
|
||||
# Defaults to $facts['os_service_default']
|
||||
#
|
||||
# [*insecure*]
|
||||
# (Optional) If true, explicitly allow TLS without checking server cert
|
||||
@ -75,7 +75,7 @@ class cinder::keystone::service_user(
|
||||
$user_domain_name = 'Default',
|
||||
$project_domain_name = 'Default',
|
||||
$system_scope = $facts['os_service_default'],
|
||||
$send_service_user_token = false,
|
||||
$send_service_user_token = $facts['os_service_default'],
|
||||
$insecure = $facts['os_service_default'],
|
||||
$auth_type = 'password',
|
||||
$auth_version = $facts['os_service_default'],
|
||||
|
@ -21,7 +21,7 @@ describe 'cinder::keystone::service_user' do
|
||||
:user_domain_name => 'Default',
|
||||
:project_domain_name => 'Default',
|
||||
:insecure => '<SERVICE DEFAULT>',
|
||||
:send_service_user_token => false,
|
||||
:send_service_user_token => '<SERVICE DEFAULT>',
|
||||
:auth_type => 'password',
|
||||
:auth_version => '<SERVICE DEFAULT>',
|
||||
:cafile => '<SERVICE DEFAULT>',
|
||||
|
Loading…
x
Reference in New Issue
Block a user