I'm attempting to describe running ec2 instances that I'm using with the following code:
DescribeInstancesResult describeInstancesRequest = ec2.describeInstances();
List<Reservation> reservations = describeInstancesRequest.getReservations();
Set<Instance> instances = new HashSet<Instance>();
for (Reservation reservation : reservations) {
instances.addAll(reservation.getInstances());
}
System.out.println("You have " + instances.size() + " Amazon EC2 instance(s) running.");
I'm getting a return result of 0. I'm guessing this is because the default AZ is set to US-East.
My instances are running in US-West.
How do I change the AZ?