This message was deleted.
# aws
s
This message was deleted.
👀 1
b
Can you share the code for your lambda function resource? For reference, this works and creates a function with 5000MB of memory:
Copy code
const fn = new aws.lambda.Function("fn", {
    code: new pulumi.asset.AssetArchive({
        ".": new pulumi.asset.FileArchive("./app")
    }),
    role: role.arn,
    handler: "index.handler",
    memorySize: 5000,
    runtime: aws.lambda.Runtime.NodeJS18dX
})
r
hm i did the exact same thing as you did
b
Can you copy/paste the entire error message?
r
this is the error nessage i got - configuration : ValidationException: status code: 400