We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe669c commit 8bbba5aCopy full SHA for 8bbba5a
1 file changed
lambda/index.mjs
@@ -58,8 +58,9 @@ export const handler = async (event) => {
58
// 📥 Get DB credentials from SecretsManager
59
let dbEnv = [];
60
try {
61
+ console.log(ssmValues['/image-processing/db-secret-arn']);
62
const secretResp = await secrets.send(new GetSecretValueCommand({
- SecretId: process.env.DB_SECRET_ARN
63
+ SecretId: ssmValues['/image-processing/db-secret-arn']
64
}));
65
const secret = JSON.parse(secretResp.SecretString || "{}");
66
0 commit comments