Set default parameters for dashboard.pp

Related #1
This commit is contained in:
Yanis Guenane
2014-02-25 11:26:17 -05:00
committed by Emilien Macchi
parent c6e00519e6
commit ea87409ef7

View File

@@ -75,16 +75,16 @@
#
class cloud::dashboard(
$ks_keystone_internal_host = $os_params::ks_keystone_internal_host,
$secret_key = $os_params::secret_key,
$horizon_port = $os_params::horizon_port,
$api_eth = $os_params::api_eth,
$ks_keystone_internal_host = '127.0.0.1',
$secret_key = 'secrete',
$horizon_port = 80,
$servername = $::fqdn,
$api_eth = '127.0.0.1',
$listen_ssl = false,
$keystone_host = $os_params::ks_keystone_internal_host,
$keystone_proto = $os_params::ks_keystone_internal_proto,
$keystone_port = $os_params::ks_keystone_internal_port,
$debug = $os_params::debug,
$keystone_host = '127.0.0.1',
$keystone_proto = 'http',
$keystone_port = 5000,
$debug = true,
$listen_ssl = false,
$horizon_cert = undef,
$horizon_key = undef,