Aws Devops support
Project detail
Need to write CFN for Blue Green Deployments using ECS Fargate – Template should contain life cycle hooks which can call lambda functions to test the traffic in Green Env .
“LifecycleEventHooks”: {
“BeforeInstall”: “FunctionName”,
“AfterInstall”: “FunctionName”,
“AfterAllowTestTraffic”: “FunctionName”,
“BeforeAllowTraffic”: “FunctionName”,
“AfterAllowTraffic”: “FunctionName”
Reference Example of the template can be found in this link : https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/blue-green.html
PS: Need to write lambda functions as well to call the hooks