Workers – Deploy to Cloudflare buttons now support Worker environment variables, secrets, and Secrets Store secrets

Any template which uses Worker environment variables, secrets, or Secrets Store secrets can now be deployed using a Deploy to Cloudflare button.

Define environment variables and secrets store bindings in your Wrangler configuration file as normal:

  • wrangler.jsonc

    {
    "name": "my-worker",
    "main": "./src/index.ts",
    "compatibility_date": "2025-07-31",
    "vars": {
    "API_HOST": "https://example.com",
    },
    "secrets_store_secrets": [
    {
    "binding": "API_KEY",
    "store_id": "demo",
    "secret_name": "api-key"
    }
    ]
    }
  • wrangler.toml

    name = "my-worker"
    main = "./src/index.ts"
    compatibility_date = "2025-07-31"
    [vars]
    API_HOST = "https://example.com"
    [[secrets_store_secrets]]
    binding = "API_KEY"
    store_id = "demo"
    secret_name = "api-key"

Add secrets to a .dev.vars.example or .env.example file:

COOKIE_SIGNING_KEY=my-secret # comment

And optionally, you can add a description for these bindings in your template’s package.json to help users understand how to configure each value:

{
"name": "my-worker",
"private": true,
"cloudflare": {
"bindings": {
"API_KEY": {
"description": "Select your company's API key for connecting to the example service."
},
"COOKIE_SIGNING_KEY": {
"description": "Generate a random string using `openssl rand -hex 32`."
}
}
}
}

These secrets and environment variables will be presented to users in the dashboard as they deploy this template, allowing them to configure each value. Additional information about creating templates and Deploy to Cloudflare buttons can be found in our documentation.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *