puppet-refstack/vagrant.pp
Paul Van Eck 579d39bbda Add param to specify app protocol
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
2015-09-03 21:37:30 -07:00

8 lines
163 B
Puppet

node default {
class { '::refstack':
hostname => '192.168.99.88',
protocol => 'http',
mysql_user_password => 'refstack',
}
}