Created
April 20, 2016 19:06
-
-
Save stevear22/a920c75738b3f20f9a04472460b46903 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#md64.json -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu-14.04-amd64" | |
config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box" | |
config.vm.provision "chef_client" do |chef| | |
chef.chef_server_url = "https://api.chef.io/organizations/mydemoorg" | |
chef.validation_key_path = "/Users/me/Google Drive/Chef/My Demo Org/chef-repo/.chef/mydemoorg-validator.pem" | |
chef.validation_client_name = "mydemoorg-validator" | |
chef.node_name = "VagrantTest1" | |
chef.add_recipe = "git" | |
chef.delete_node = true | |
chef.delete_client = true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment