From 423edc77b886995ee248868d26fd42fed2b9c8c5 Mon Sep 17 00:00:00 2001 From: Mischa Spiegelmock Date: Tue, 2 Jul 2024 12:40:52 -0700 Subject: [PATCH] WIP --- stacks/secrets.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stacks/secrets.ts b/stacks/secrets.ts index 0378eda..46f37e7 100644 --- a/stacks/secrets.ts +++ b/stacks/secrets.ts @@ -31,7 +31,8 @@ export function Secrets({ stack, app }: StackContext) { const SECRET_1 = new Config.Secret(stack, 'SECRET_1') // grant your app permissions to access the SST secrets - app.addDefaultFunctionBinding([SECRET_1]) + // you need to set values to enable bindings + // app.addDefaultFunctionBinding([SECRET_1]) return { secrets, SECRET_1 } }