forked from tschellenbach/Stream-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
26 lines (23 loc) · 784 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.share_folder "workspace", "/vagrant_workspace", "../"
config.vm.customize ["modifyvm", :id, "--memory", 1024]
config.vm.network :hostonly, '192.168.50.55'
config.vm.provision :shell, :inline => "apt-get update"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "vagrant/puppet/manifests"
puppet.module_path = "vagrant/puppet/modules"
puppet.manifest_file = "local_dev.pp"
facts = {
:ec2_userdata => {
:role => 'local_dev',
:environment => 'development'
}.to_json,
:vagrant => true,
}
puppet.facter = facts
end
end