numerous-table-61756
03/11/2021, 7:02 AMerror: 1 error occurred:
* error creating Lambda Function (1): RequestEntityTooLargeException:
status code: 413, request id: ce25e9d7-45aa-4de3-a2b5-26a29372d6d3
when trying to upload an aws lambda with size of 72M. Any known way to solve this?brave-planet-10645
03/11/2021, 7:23 AMnumerous-table-61756
03/11/2021, 7:29 AMapiLambda = aws.lambda_.Function(
resource_name="api",
opts=pulumi.ResourceOptions(depends_on=[apiLambdaPolicy]),
runtime="java11",
code="test.jar",
handler="path to handler",
role=apiLambdaRole.arn,
publish=False,
memory_size=512,
timeout=30,
)