Native Cloudflare Workers sync (like Pages integration)
Doppler has a native Config Sync integration for Cloudflare Pages, but there’s no equivalent for Cloudflare Workers. The current workaround is a CLI one-liner:
doppler secrets --json | jq -c 'with_entries(.value = .value.computed)' | wrangler secret bulk
This has a few problems:
- It’s manual/CI-scripted — not a continuous sync like the Pages integration
- It only handles runtime secrets. Cloudflare recently added Workers Builds with separate build-time environment variables, which have their own API (
/accounts/{account_id}/builds/triggerswith env var endpoints). There’s no way to sync to those at all. - For monorepo setups with multiple Workers, you’d need to script this per-worker, whereas a native integration could map Doppler configs to individual Workers.
Request: Add Cloudflare Workers as a native sync target alongside Pages, covering both runtime secrets and build-time env vars.