mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
20 lines
281 B
YAML
20 lines
281 B
YAML
service: service
|
|
|
|
configValidationMode: error
|
|
frameworkVersion: '*'
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs16.x
|
|
|
|
package:
|
|
artifact: artifact.zip
|
|
|
|
functions:
|
|
foo:
|
|
handler: index.handler
|
|
other:
|
|
handler: index.handler
|
|
package:
|
|
artifact: artifact-function.zip
|