Rename horizon_* ssl params to ssl_*

It's required after [1]. Now we need to set ssl_verify_client when
enabling ssl in horizon.

[1] https://review.opendev.org/#/c/758041/

Change-Id: I68f6ac3282d437109a1d38d4456458e5379e9137
This commit is contained in:
Alfredo Moralejo 2020-10-22 18:08:53 +02:00
parent 7ef539bc37
commit 0555083a1f
1 changed files with 4 additions and 3 deletions

View File

@ -30,9 +30,10 @@ class packstack::horizon ()
cache_server_port => '11211',
file_upload_temp_dir => '/var/tmp',
listen_ssl => $horizon_ssl,
horizon_cert => hiera('CONFIG_HORIZON_SSL_CERT', undef),
horizon_key => hiera('CONFIG_HORIZON_SSL_KEY', undef),
horizon_ca => hiera('CONFIG_HORIZON_SSL_CACERT', undef),
ssl_cert => hiera('CONFIG_HORIZON_SSL_CERT', undef),
ssl_key => hiera('CONFIG_HORIZON_SSL_KEY', undef),
ssl_ca => hiera('CONFIG_HORIZON_SSL_CACERT', undef),
ssl_verify_client => false,
neutron_options => {
'enable_vpn' => hiera('CONFIG_HORIZON_NEUTRON_VPN'),
'enable_lb' => hiera('CONFIG_HORIZON_NEUTRON_LB'),