mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
23 lines
333 B
YAML
23 lines
333 B
YAML
service: service
|
|
|
|
configValidationMode: error
|
|
frameworkVersion: '*'
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs16.x
|
|
|
|
functions:
|
|
foo:
|
|
handler: index.handler
|
|
# provisionedConcurrency: 1
|
|
events:
|
|
- httpApi: '*'
|
|
|
|
other:
|
|
handler: index.handler
|
|
events:
|
|
- httpApi:
|
|
method: '*'
|
|
path: /foo
|