puppet-storyboard/vagrant.pp
Colleen Murphy 88e03c0d52 Add Gemfile and puppet 4 checks
In anticipation of puppet 4, start trying to deal with puppet 4 things
that can be helpfully predicted by puppet lint plugins. Also fix lint
errors caught by the puppet-lint-absolute_classname-check and
puppet-lint-trailing_newline-check gems.

Change-Id: If9e2cd626122c4ff6338a82d87c815ae33578bac
2015-08-14 10:06:32 -07:00

24 lines
532 B
Puppet

node 'puppet-storyboard-precise64' {
class { '::storyboard':
mysql_user_password => 'storyboard',
rabbitmq_user_password => 'storyboard',
hostname => '192.168.99.22',
valid_oauth_clients => [
'192.168.99.22'
],
}
}
node 'puppet-storyboard-trusty64' {
class { '::storyboard':
mysql_user_password => 'storyboard',
rabbitmq_user_password => 'storyboard',
hostname => '192.168.99.23',
valid_oauth_clients => [
'192.168.99.23'
],
}
}