The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aws_list_images.sh 507 B

123456789101112131415
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. function die {
  6. echo 1>&2 "${1}"
  7. exit 1
  8. }
  9. THISDIR=$(cd $(dirname ${0}) && pwd)
  10. for region in $(${THISDIR}/aws_list_regions.sh) ; do
  11. echo 1>&2 "Listing images in region ${region}"
  12. ${THISDIR}/aws_set_region.sh ${region} || die "Error setting aws region ${region}"
  13. aws ec2 describe-images --filters "Name=name,Values=packer_bubble_*"
  14. done