Haskell Runtime for AWS Lambda

This package provides a way of running Haskell projects on AWS Lambda.
Sample lambda function
stack new my-haskell-lambda https://github.com/theam/aws-lambda-haskell-runtime/raw/master/stack-template.hsfiles --resolver=lts-12.13 --omit-packages
cd my-haskell-lambda
stack docker pull
Then add
packages:
- .
extra-deps:
- aws-lambda-haskell-runtime-1.0.4
to your stack.yaml
Then run
make
Now you should have a build/function.zip
file that you can upload to your lambda.
Lambda function configuration
When creating your lambda function you need to provide a layer with the Haskell runtime. We have deployed the layer to our AWS account, you can use it or deploy it to your own AWS account.
The ARN of the runtime layer is:
arn:aws:lambda:<YOUR REGION>:785355572843:layer:haskell-runtime:<VERSION>
The version of the layer may be different depending of the region, the current values are:
us-east-2 |
Other regions |
10 |
2 |
Full user guide
Take a look at the Getting Started with the Haskell AWS Lambda Runtime guide.