Files
Francisco GuimarĂ£es a7045b23d1 - Upgrading node runtime
- Using slsw.lib.entries with in typescript example
2017-08-02 20:58:17 -03:00

25 lines
412 B
YAML

service: multiple-statically-entries-example
# Add the serverless-webpack plugin
plugins:
- serverless-webpack
provider:
name: aws
runtime: nodejs6.10
functions:
first:
handler: first.hello
events:
- http:
method: GET
path: first
second:
handler: second.hello
events:
- http:
method: GET
path: second
integration: lambda