~philroche/ubuntu-on-ec2/ec2-publishing-scripts-kernel-panic-revert

605 by Ben Howard
Added definitions for eu-central-1.
1
#!/bin/bash
650.1.2 by Phil Roche
Adding comments as to why we are using cloud-image-manager
2
_regions=(us-west-1
3
         us-west-2
4
         us-east-1
5
         eu-west-1
6
         ap-southeast-1
7
         ap-northeast-1
8
         sa-east-1
9
         ap-southeast-2
10
         eu-central-1)
159 by Scott Moser
prepare for ap-southeast-1 region
11
605 by Ben Howard
Added definitions for eu-central-1.
12
for r in ${EC2_ALL_REGIONS:-${_regions[@]}}; do
159 by Scott Moser
prepare for ap-southeast-1 region
13
   echo $r
14
done