serverless-blue-green-deployments
Version:
A Serverless plugin to implement blue/green deployment of Lambda functions
35 lines (34 loc) • 648 B
JSON
{
"service": "blue-green-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"
]
}
}
}
}