-1

I want to force deploy an aws ECS service using aws cli.

What I want is shown below, but using aws cli. How can I do it?

enter image description here

rock'n rolla
  • 1,883
  • 1
  • 13
  • 19
Santhosh
  • 9,965
  • 20
  • 103
  • 243

1 Answers1

2

With AWS CLI you can do the following:

aws ecs update-service --cluster <value> --service <value> --force-new-deployment

AWS CLI doc

marcincuber
  • 3,451
  • 1
  • 17
  • 29