mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
Co-authored-by: Michael <michael@Michaels-MacBook-Pro.local> Co-authored-by: Michael <michael@ip-192-168-158-61.eu-west-1.compute.internal>
19 lines
369 B
YAML
19 lines
369 B
YAML
service: service
|
|
|
|
configValidationMode: error
|
|
frameworkVersion: '*'
|
|
|
|
# VPC and Events configuration is added dynamically during test run
|
|
# Because it has to be provisioned separately via CloudFormation stack
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs14.x
|
|
versionFunctions: false
|
|
|
|
functions:
|
|
producer:
|
|
handler: core.producer
|
|
consumer:
|
|
handler: core.consumer
|