mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
19 lines
316 B
YAML
19 lines
316 B
YAML
service: aws-nodejs # NOTE: update this with your service name
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs6.10
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|
|
world:
|
|
handler: handler.world
|
|
|
|
resources:
|
|
Resources:
|
|
HelloLambdaFunction:
|
|
Type: "AWS::Lambda::Function"
|
|
Properties:
|
|
Timeout: 10
|