chilly-receptionist-94436
01/27/2021, 5:53 PM* error creating Lambda Function: ValidationException:
status code: 400, request id: 65419587-ddbb-465b-9d57-afb7efb7fcb0
Anyway to get more detailed information?brave-planet-10645
01/27/2021, 5:58 PMchilly-receptionist-94436
01/27/2021, 6:03 PMbrave-planet-10645
01/27/2021, 6:19 PMconst ruleReportsFunc = new aws.lambda.Function("ruleReportsFunc", {
environment: {
variables: {
"RULE_REPORT_BUCKET": ruleReports.bucket,
},
},
code: new pulumi.asset.AssetArchive({
".": new pulumi.asset.FileArchive("./app"),
}),
runtime: "nodejs12.x",
role: ruleReportsFuncRole.arn,
handler: "ruleReportsFunc.ruleReportsFunc" // <-- I think this is correct, but you'll need to check
});
chilly-receptionist-94436
01/27/2021, 6:22 PM