Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change the label of an ElasticBeanstalk application version?

When I go to the "Application Versions" section of my ElasticBeanstalk console, I see all my previous EB CLI deployments listed with "app-<date>_<time>" in the "Version Label" column. I would like to be able to change these, so I can give some versions human-recognizable names and more easily keep track of how the application would be if I re-deployed that version. I don't see any options for editing versions on the console, and the update-application-version command appears to only take a version-label argument for specification, not input. Does anyone know a way to do what I'm proposing?

like image 668
Ben Avatar asked Sep 08 '25 01:09

Ben


1 Answers

If you want to just change the label , not from console its possible ,

use below to deploy your application with your own label

eb deploy --label version_label environment_name

Ref: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb3-deploy.html

like image 194
Jamsheer Kandoth Avatar answered Sep 10 '25 02:09

Jamsheer Kandoth