From f0cd18eaa7bf750d27a703e7949def6acffe18da Mon Sep 17 00:00:00 2001 From: Christine Spang Date: Tue, 28 Mar 2017 17:00:18 -0700 Subject: [PATCH] [dev] Make deploy-it print link to the EB console --- deploy-it | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy-it b/deploy-it index 4e77123f3..a404257ff 100755 --- a/deploy-it +++ b/deploy-it @@ -55,6 +55,9 @@ if subprocess.call(['git', 'rev-parse', '-q', '--verify', tag_name]) != 0: # Hand things off to `eb deploy`. It will push a tagged release to EB. try: print "Handing off to `eb deploy`... (this may take some time!)" + print + print "You can monitor your deploy using the Elastic Beanstalk console:" + print "https://us-west-2.console.aws.amazon.com/elasticbeanstalk/home?region=us-west-2#/applications" subprocess.check_call(['eb', 'deploy', environment]) except: sys.exit("eb deploy failed!")