Created
March 31, 2015 23:22
-
-
Save double-z/fbeb142c0c16eb5b2a15 to your computer and use it in GitHub Desktop.
vagrant-provisioning-hosted-chef-server
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
chef_gem 'chef-provisioning-vagrant' | |
with_chef_server "https://api.opscode.com/organizations/zzondlo", | |
:client_name => Chef::Config[:node_name], | |
:signing_key_filename => Chef::Config[:client_key] | |
machine "vweb" do | |
action [:ready, :setup, :converge] | |
driver 'vagrant' | |
machine_options :vagrant_options => { | |
'vm.box' => 'opscode-ubuntu-12.04' | |
} | |
converge true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment