From 15111934de1db234ac9c5c05d731a4fe554e1f05 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Wed, 14 Oct 2020 15:50:37 +0200 Subject: [PATCH] Replace horizon_* with ssl_* params Depends-On: https://review.opendev.org/#/c/758041/ Change-Id: I9f154ec7bd32e31b88e25d39ff3962a2aae8a70d --- manifests/horizon.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/horizon.pp b/manifests/horizon.pp index 58b71dde3..b44624ea6 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',