mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
21 lines
403 B
YAML
21 lines
403 B
YAML
service: aws-nodejs # NOTE: update this with your service name
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs6.10
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|
|
|
|
resources:
|
|
Resources:
|
|
MyCustomS3Bucket:
|
|
Type: 'AWS::S3::Bucket'
|
|
Properties:
|
|
BucketName: WillBeReplacedBeforeDeployment
|
|
Outputs:
|
|
MyCustomOutput:
|
|
Value: SomeValue
|
|
Description: Used to test custom outputs
|