The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

16 linhas
507 B

  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