UNPKG

serverless-plugin-canary-deployments

Version:

A Serverless plugin to implement canary deployment of Lambda functions

35 lines (34 loc) 644 B
{ "service": "canary-deployments-test", "functions": { "hello": { "handler": "handler.hello", "events": [ { "http": "GET hello" }, { "stream": { "type": "dynamodb", "arn": { "Fn::GetAtt": [ "StreamsTestTable", "StreamArn" ] } } }, { "sns": "snsTopic" } ], "deploymentSettings": { "type": "Linear10PercentEvery1Minute", "alias": "Live", "alarms": [ "HelloFooAlarm" ] } } } }