mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
25 lines
379 B
YAML
25 lines
379 B
YAML
service: service
|
|
|
|
configValidationMode: error
|
|
frameworkVersion: '*'
|
|
|
|
custom:
|
|
customDomain:
|
|
domainName: api.example.com
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs14.x
|
|
lambdaHashingVersion: 20201221
|
|
|
|
functions:
|
|
function:
|
|
handler: index.handler
|
|
events:
|
|
- http:
|
|
path: foo
|
|
method: GET
|
|
- http:
|
|
path: foo
|
|
method: POST
|