cdupont
cdupont

Reputation: 1188

Rename Cluster on Amazon ECS

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

Upvotes: 7

Views: 7246

Answers (1)

mohit
mohit

Reputation: 2469

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/

Upvotes: 7

Related Questions