Last active
August 12, 2017 15:25
-
-
Save tbernacchi/a3684c816ca8d83b984e4754998acee7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# # vi: set ft=ruby : | |
###CONFIGURACOES DOS HOSTS | |
Vagrant.configure("2") do |config| | |
#BOX | |
config.vm.box = "insaneworks/centos7" | |
config.vm.define "chef1" do |chef1| | |
chef1.vm.provider :virtualbox do |v| | |
v.name = "chef1" | |
v.customize ["modifyvm", :id, "--memory", "256"] | |
end | |
chef1.vm.hostname = "chef1" | |
chef1.vm.network "private_network", ip: "192.168.33.101" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment