2020-09-09 11:17:21 +02:00

26 lines
402 B
YAML

service: aws-nodejs
configValidationMode: error
provider:
name: aws
runtime: nodejs12.x
functions:
hello:
handler: handler.hello
package:
individually: true
include:
- handler.js
exclude:
- handler2.js
hello2:
handler: handler2.hello
package:
individually: true
include:
- handler2.js
exclude:
- handler.js