I keep getting this error when trying to provision a dropplet:
The secure connection to the Digital Ocean API has failed. Please ensure that your local certificates directory is defined in the provider config.
config.vm.provider :digital_ocean do |vm|
vm.ca_path = "/path/to/ssl/ca/cert.crt"
end
This is generally caused by the OpenSSL configuration associated with the Ruby install being unaware of the system specific ca certs.
I’ve already tried these solutions, but none seem to work: https://www.digitalocean.com/community/articles/how-to-use-digitalocean-as-your-provider-in-vagrant-on-an-ubuntu-12-10 https://gist.github.com/fnichol/867550
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Yes, tried but failed. If I echo out the SSL_CERT_FILE variable it gives me the correct location, but still won’t work.
Have you tried downloading <a href=“http://curl.haxx.se/ca/cacert.pem”>http://curl.haxx.se/ca/cacert.pem</a> and pointing <code>vm.ca_path</code> to it?