Native Cloudflare Workers sync (like Pages integration)

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/triggers with 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.

Hi @Isaac_Rowntree thanks for the feature request! Cloudflare Worker support is something we have heard from other users, so it’s definitely on our radar.

I can’t share any timelines or plans right now, but wanted to acknowledge the request. Let us know if you have any other feedback or requests. Thanks!