kotless icon indicating copy to clipboard operation
kotless copied to clipboard

Kotlin Serverless Framework

Results 58 kotless issues
Sort by recently updated
recently updated
newest added

Not really that much change.. I have testet it in a AWS lambda [Migration guide from ktor](https://ktor.io/docs/migrating-2.html)

I tried upgrading Kotlin to 1.6.21 in and found out, that kotless 0.2.0 doesn't work with that. Kotlin 1.6.10 works perfectly fine in the same project. The issue is gradle...

Kotless S3Bucket permission annotation generates terraform incorrectly for the ListObjects operation. ListObjects requires the s3:ListBucket permission to be applied to the s3 arn without a trailing "/*". i.e. the arn...

DynamoDBTable PermissionLevel should support AWS PartiQL* permissions for read and write when applied.

If an event lambda throws an uncaught exception, this should result in a lambda execution failure and allow normal AWS lambda error management features to track and route the error...

If I create a simple Ktor route in a Kotless project, e.g.: ```kotlin get("/test-delete") { call.respondText("This function needs to be deleted") } ``` This deploys successfully to AWS and appears...

Relates to #28. 1) This fixes a few errors in current media types. 2) Adds several popular file extensions and types per [official IANA list](http://www.iana.org/assignments/media-types/media-types.xhtml).

I am no expert, but I believe the correct mime-type for SVG is `image/svg+xml.` In [Http.kt](https://github.com/JetBrains/kotless/blob/8c9e03b10b25170046212718510178e977e63e4a/model/src/main/kotlin/io/kotless/HTTP.kt#L27) it is `image/svg` which I don't believe is a valid mime-type. I think this...

Does the Kotless DSL currently support path parameters? I understand the documentation is a work in progress, so I tried using a few different common patterns e.g. `/users/:id`, `/users/{id}` just...