
Templates/manifests for https hosting already exist, but we currently force http hosting. This patch adds a 'protocol' param to allow the capability to host with https. This patch also changes the hostname to default to the fully qualified domain name and changes certs/keys to snakeoil. Change-Id: Ic3cd47f4166c5219030254e8ae557b654f0756eb
8 lines
163 B
Puppet
8 lines
163 B
Puppet
node default {
|
|
class { '::refstack':
|
|
hostname => '192.168.99.88',
|
|
protocol => 'http',
|
|
mysql_user_password => 'refstack',
|
|
}
|
|
}
|