aws_scheduler_configure.everywhere.sh 471 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. echo
  3. echo Updating GovCloud Accounts\' Schedules
  4. echo
  5. for profile in mdr-test-c2-gov mdr-test-malware-gov mdr-test-modelclient-gov
  6. do
  7. echo
  8. echo Setting/Updating Schedule for $profile
  9. aws_scheduler_configure.sh $profile us-gov-east-1
  10. done
  11. echo
  12. echo Updating Commercial Accounts\' Schedules
  13. echo
  14. for profile in mdr-test-modelclient mdr-test-c2
  15. do
  16. echo
  17. echo Setting/Updating Schedule for $profile
  18. aws_scheduler_configure.sh $profile us-east-1
  19. done