Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Elastic Beanstalk
  2. ## Delete specific application version
  3.  
  4. aws elasticbeanstalk delete-application-version \
  5. --version-label $eb_application_version \
  6. --application-name $eb_application_name \
  7. --profile $profile
  8.  
  9. # ECS
  10. ## Discover when the service was created
  11. aws ecs describe-services \
  12. --services $service_name \
  13. --cluster $cluster_name \
  14. --profile $profile \
  15. --region $region \
  16. --query "services[0].deployments[0]"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement