aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 5a15585..2ea663a 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -43,6 +43,18 @@ Vagrant::Config.run do |config|
web_config.vm.network :hostonly, "192.168.50.104"
end
+ # Define a Storage VM
+ config.vm.define :storage do |storage_config|
+ storage_config.vm.box = "storage"
+ storage_config.vm.network :hostonly, "192.168.50.105"
+ end
+
+ # Define a Test VM
+ config.vm.define :test do |test_config|
+ test_config.vm.box = "test"
+ test_config.vm.network :hostonly, "192.168.50.106"
+ end
+
# Share hiera configuration.
config.vm.share_folder "hiera", "/etc/puppet/hiera", "puppet/hiera", create: true
end