I have managed to resolve the issue by changing the Vagrant config from:

config.vm.provision "chef_client" do |chef|
  chef.chef_server_url = "https://api.opscode.com/organizations/itccompliance";
  chef.client_key_path = "./chef-repo/.chef/itccompliance.pem"
  chef.node_name = "itccompliance"
  chef.validation_key_path = "./chef-repo/.chef/itccompliance-validator.pem"
  chef.validation_client_name = "itccompliance-validator"
  chef.provisioning_path = "/etc/chef"
end


to: 

config.vm.provision :chef_client do |chef|
  chef.node_name = "itccompliance"
  chef.chef_server_url = "https://api.opscode.com/organizations/itccompliance";
  chef.validation_key_path = '~/.chef/itccompliance-validator.pem'
  chef.validation_client_name = "itccompliance-validator"
end

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to