Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Commit 32ccf03

Browse files
committed
Add kickstack_horizon_allow_any_hostname parameter
By default (unless running in debug mode), Django will only allow access to Horizon through the Horizon host's FQDN. Add kickstack_horizon_allow_any_hostname, which when set to true will override by allowing access through any hostname, or the host's IP address.
1 parent f7a499a commit 32ccf03

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

manifests/horizon.pp

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
class { '::horizon':
2323
require => Package['memcached'],
2424
secret_key => $new_secret_key,
25+
fqdn => $::kickstack::horizon_allow_any_hostname ? {
26+
true => '*',
27+
default => pick($fqdn,$hostname)
28+
},
2529
cache_server_ip => '127.0.0.1',
2630
cache_server_port => '11211',
2731
swift => false,

manifests/init.pp

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
$nova_compute_libvirt_type = $kickstack::params::nova_compute_libvirt_type,
6060
$xenapi_connection_url = $kickstack::params::xenapi_connection_url,
6161
$xenapi_connection_username = $kickstack::params::xenapi_connection_username,
62-
$xenapi_connection_password = $kickstack::params::xenapi_connection_password
62+
$xenapi_connection_password = $kickstack::params::xenapi_connection_password,
63+
$horizon_allow_any_hostname = $kickstack::params::horizon_allow_any_hostname,
6364
) inherits kickstack::params {
6465

6566
include ::exportfact

manifests/params.pp

+8
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,12 @@
237237

238238
# The XenAPI password (ignored unless nova_compute_driver==xenserver)
239239
$xenapi_connection_password = getvar("::${variable_prefix}xenapi_connection_password")
240+
241+
# Allow access to Horizon using any host name?
242+
# Default is false, meaning allow Horizon access only through the
243+
# FQDN of the dashboard host.
244+
# Set to true if you want to access by IP address, through an SSH
245+
# tunnel, etc.
246+
$horizon_allow_any_hostname = str2bool(pick(getvar("::${variable_prefix}horizon_allow_any_hostname"),'false'))
247+
240248
}

0 commit comments

Comments
 (0)