Is there a way to reduce the time for a service to get recognised as being stable? I have a deployment pipeline set up via Jenkins. The build time is ~8 minutes only due to this last step
aws ecs wait services-stable --cluster $C --service $S
which roughly takes 5-6 minutes. The target group is set up to be healthy after 2 checks. The check is done every 20 seconds, so this should get flagged as healthy after 40 seconds if I'm not mistaken.
