
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
15 lines
403 B
Puppet
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',
|
|
}
|
|
} |