Skip to content

Instantly share code, notes, and snippets.

@torumakabe
Last active August 29, 2015 14:06
Show Gist options
  • Save torumakabe/a470e86a1477cd76d4f4 to your computer and use it in GitHub Desktop.
Save torumakabe/a470e86a1477cd76d4f4 to your computer and use it in GitHub Desktop.
Vagrantfile for a host of OpenStack tools
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "opscode-ubuntu1404"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provision "shell" do |sh|
sh.path = "provision.sh"
sh.args = "ansible/site.yml ansible/hosts"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment