how to define the existance of secrets in wrangler.jsonc?

i have been wondering how to use worker secrets for over a week now and i thougt i made it work but turns out it was just a fluke can someone please tell me how can i define worker secrets in wrangler.jsonc so that typescript doesn't scream at me and also they actually work?
8 Replies
1.1.1.1
1.1.1.12w ago
DNS over Discord: WHOIS
lisekilis.dev
-------------+-------------------------------
Registrar | CloudFlare, Inc.
Registration | Thu, 29 Feb 2024 19:44:04 GMT
Expiration | Sat, 28 Feb 2026 19:44:04 GMT
lisekilis.dev
-------------+-------------------------------
Registrar | CloudFlare, Inc.
Registration | Thu, 29 Feb 2024 19:44:04 GMT
Expiration | Sat, 28 Feb 2026 19:44:04 GMT
lisekilis
lisekilisOP2w ago
oh and calling them by using env.SECRET_NAME didn't work for me i am using ts i did try to manually type them in worker-configuration.d.ts, stopped ts from screaming @ me but they don't work
Walshy
Walshy2w ago
you don't define secrets in wrangler.json you will want to npx wrangler secret put and yeah, for typescript you'll just want to deifne them in the env type
lisekilis
lisekilisOP2w ago
well then I'm doing it correctly and yet the secrets turn up empty when i try to use them or log them to check if they work worker-configuration.d.ts:
interface Env {
SETTINGS: KVNamespace;
PHOTOS: R2Bucket;

DISCORD_APP_ID: string;
DISCORD_PUBLIC_KEY: string;
DISCORD_BOT_TOKEN: string;
API_TOKEN: string;
}
interface Env {
SETTINGS: KVNamespace;
PHOTOS: R2Bucket;

DISCORD_APP_ID: string;
DISCORD_PUBLIC_KEY: string;
DISCORD_BOT_TOKEN: string;
API_TOKEN: string;
}
somewhere in the code: console.log(env.DISCORD_APP_ID);
lisekilis
lisekilisOP2w ago
(log)
No description
Walshy
Walshy2w ago
it seems like you aren't setting the secret correctly then should be npx wrangler secret put DISCORD_APP_ID then you paste it in when it asks
lisekilis
lisekilisOP2w ago
i've set it in the dash
No description
lisekilis
lisekilisOP2w ago
i have no idea what I'm doing wrong
export default {
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
console.log(`DISCORD_APP_ID:`, env.DISCORD_APP_ID);
export default {
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
console.log(`DISCORD_APP_ID:`, env.DISCORD_APP_ID);
No description

Did you find this page helpful?