Michael Krotscheck 380937f5a1 Added a Vagrant module and manifest for easier development.
Vagrant file will provision the configuration it finds in vagrant.pp.
Node configurations for precise and trusty provided, on different IP
addresses.

Change-Id: I7b08ce4cc5acdc2ad58261f4872ba2df2e06dcf4
2015-02-23 12:14:09 -08:00

15 lines
403 B
Puppet

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