Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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
stack new my-haskell-lambda https://github.com/theam/aws-lambda-haskell-runtime/raw/master/stack-template.hsfiles --resolver=lts-13.0 --omit-packages
cd my-haskell-lambda
stack docker pull
```
Expand All @@ -21,7 +21,7 @@ packages:
- .

extra-deps:
- aws-lambda-haskell-runtime-1.0.9
- aws-lambda-haskell-runtime-1.0.10
```

to your `stack.yaml`
Expand All @@ -40,7 +40,7 @@ When creating your lambda function you need to provide a layer with the Haskell

The ARN of the runtime layer is:
```
arn:aws:lambda:<YOUR REGION>:785355572843:layer:aws-haskell-runtime:2
arn:aws:lambda:<YOUR REGION>:785355572843:layer:aws-haskell-runtime:5
````

## Full user guide
Expand Down