Skip to content

Commit 193d512

Browse files
authored
Update src/content/docs/workers/configuration/secrets.mdx
1 parent 9220bba commit 193d512

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/content/docs/workers/configuration/secrets.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import { Render } from "~/components";
1010
## Background
1111

1212
Secrets are a type of binding that allow you to attach encrypted text values to your Worker. You cannot see secrets after you set them and can only access secrets via [Wrangler](/workers/wrangler/commands/#secret) or programmatically via the [`env` parameter](/workers/runtime-apis/handlers/fetch/#parameters). Secrets are used for storing sensitive information like API keys and auth tokens. Secrets are available on the [`env` parameter](/workers/runtime-apis/handlers/fetch/#parameters) passed to your Worker's [`fetch` event handler](/workers/runtime-apis/handlers/fetch/),
13-
and may also be accessible via `process.env` in Workers that support Node.js compatibility.
13+
and may also be accessible via [`process.env`](/workers/configuration/environment-variables)
14+
in Workers that support Node.js compatibility.
1415

1516
## Access your secrets with Workers
1617

0 commit comments

Comments
 (0)