Deploying changes to individual Lambdas using Serverless Framework
I have a serverless project that deploys 2 Lambdas in the same stack: service: example-apis2 provider: name: aws memorySize: 512 region: us-west-1 apiGateway: restApiId: ${env:APIGWID} # API Gateway to add this api to restApiRootResourceId: ${env:RESOURCEID} functions: example2: handler: index2.handler layers: – arn:aws:lambda:us-west-1:[myaccountid]:layer:example-layer:1 events: – http: path: api2 method: get example3: handler: index3.handler layers: – arn:aws:lambda:us-west-1:[myaccountid]:layer:example-layer:1 …
Continue reading “Deploying changes to individual Lambdas using Serverless Framework”
