Doppler

A secure secrets management CLI for managing environment variables from Doppler.

Authentication

Use a ‘Service Token’ for non-interactive use.

Basic CLI Commands

Using Service Token with the CLI:

# Prevent command with Service Token being recorded in bash history
export HISTIGNORE='export DOPPLER_TOKEN*'

export DOPPLER_TOKEN='dp.st.prd.xxxx'
doppler run -- your-command-here

Check authentication:

doppler whoami

Set a secret:

doppler secrets set <KEY>=<VALUE>

Get a single secret value:

doppler secrets get <KEY>

Delete a secret:

doppler secrets delete <KEY>

Docs

https://docs.doppler.com/docs/cli

https://docs.doppler.com/docs/service-tokens

Application Details