commit 15111934de1db234ac9c5c05d731a4fe554e1f05 Author: Tobias Urdin Date: Wed Oct 14 15:50:37 2020 +0200 Replace horizon_* with ssl_* params Depends-On: https://review.opendev.org/#/c/758041/ Change-Id: I9f154ec7bd32e31b88e25d39ff3962a2aae8a70d diff --git a/manifests/horizon.pp b/manifests/horizon.pp index 58b71dd..b44624e 100644 --- a/manifests/horizon.pp +++ b/manifests/horizon.pp @@ -33,9 +33,9 @@ class openstack_integration::horizon { allowed_hosts => $::openstack_integration::config::ip_for_url, listen_ssl => $::openstack_integration::config::ssl, ssl_redirect => $::openstack_integration::config::ssl, - horizon_cert => $::openstack_integration::params::cert_path, - horizon_key => "/etc/openstack-dashboard/ssl/private/${::fqdn}.pem", - horizon_ca => $::openstack_integration::params::ca_bundle_cert_path, + ssl_cert => $::openstack_integration::params::cert_path, + ssl_key => "/etc/openstack-dashboard/ssl/private/${::fqdn}.pem", + ssl_ca => $::openstack_integration::params::ca_bundle_cert_path, ssl_verify_client => 'optional', keystone_url => $::openstack_integration::config::keystone_auth_uri, log_level => 'DEBUG',