mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
26 lines
458 B
YAML
26 lines
458 B
YAML
service:
|
|
name: aws-nodejs-ecma-script
|
|
# app and org for use with dashboard.serverless.com
|
|
#app: your-app-name
|
|
#org: your-org-name
|
|
frameworkVersion: '2'
|
|
|
|
# Add the serverless-webpack plugin
|
|
plugins:
|
|
- serverless-webpack
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs12.x
|
|
lambdaHashingVersion: 20201221
|
|
|
|
functions:
|
|
first:
|
|
handler: first.hello
|
|
second:
|
|
handler: second.hello
|
|
events:
|
|
- httpApi:
|
|
method: get
|
|
path: /second
|