Rename Cluster on Amazon ECS

Viewed 4113

I created an ECS cluster named "staging", and latter put it in production. I would like to rename it to make it obvious this is the production one... It seems that neither the website or aws-cli allows that. Is there any way? If no, how can I add some indication/attribute showing that this cluster is in production? Thanks

1 Answers

This is not possible as of now with api, sdk or cli. You can terminate the cluster and create new cluster as per your environment.

Also, It is not a good idea to associate components of production to a cluster name staging.

As per your question, If you want to achieve blue-green deployment you can read below article to achieve that.

Ref: https://aws.amazon.com/blogs/compute/bluegreen-deployments-with-amazon-ecs/

Related