Version 1.0
OS Ubuntu 20.04 (LTS)
Struggling with scattered secrets, home-brewed tools, or not wanting to pay thousands of dollars? Doppler is the easiest way to securely manage all your environment variables in one place. Get set up in minutes not months with developer-friendly pricing. Managing your projects and team's access to secrets is straightforward. Doppler works the same way in every environment and has integrations with all cloud providers.
Our integration with Digital Ocean automatically installs the Doppler CLI and lets you easily fetch your secrets from your single source of truth in Doppler.
Generate a new service token and export this into your environment. After that simply run doppler run -- your-command-here
to inject all your secrets into your application.
More information:
In addition to creating a Droplet from the Doppler 1-Click App via the control panel, you can also use the DigitalOcean API.
As an example, to create a 4GB Doppler Droplet in the SFO2 region, you can use the following curl command. You’ll need to either save your API access token to an environment variable or substitute it into the command below.
curl -X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer '$TOKEN'' -d \
'{"name":"choose_a_name","region":"sfo2","size":"s-2vcpu-4gb","image":"doppler-20-04"}' \
"https://api.digitalocean.com/v2/droplets"