Felix Haus

Results 95 comments of Felix Haus

Another error that can pop up: ``` ╷ │ Error: error putting S3 Bucket Notification Configuration: InvalidArgument: Unable to validate the following destination configurations │ status code: 400, request id:...

Yes, the problem is probably caused because we use SQS and S3 als event source for a single Lambda. To solve this issue the S3 workflow should also be connected...

Yeah, Next.js 12 has [support for esm](https://nextjs.org/blog/next-12#es-modules-support-and-url-imports) while our module currently hasn't. Since Vercel also uses Lambda (And the same Node.js version under the hood as this module) the problem...

Hey, the module uses a bash script to download the content that is used for the Lambda functions. The flow is as follows: 1. Package is published on npm, e.g....

> I turned on terraform logs and found this: > ```plain > 2022-05-08T18:51:48.874-0700 [INFO] ReferenceTransformer: reference not found: "var.use_local" > 2022-05-08T18:51:48.874-0700 [INFO] ReferenceTransformer: reference not found: "path.module" > 2022-05-08T18:51:48.874-0700 [INFO]...

Things that currently doesn't work with the multiple deployments feature: - Role Boundary (`lambda_role_permissions_boundary `) - VPN (`lambda_attach_to_vpc `) - Attach additional Policies (`lambda_policy_json `)

Hi, the command usage seems correct. You could check if the alias was successfully created with: ``` tf-next alias ls ``` It could be possible that the caching of the...

For certain endpoints this would be impossible since we don't tell API-Gateway about the paths. Instead we use a [proxy-resource](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html) that collects all incoming requests. But I like the idea...

Sorry for the late reply. The easiest way to do this is to filter for the name of the created routes. Each API Lambda generates a route with the name...

@benkraus We currently calculate the content type of static files with the help of the [mime package](https://github.com/broofa/mime). Since `apple-app-site-association` has no file extension the lookup fails to detect the correct...