ZF-6483: Zend_Service_Amazon_Ec2 describe() won't work for european instances
Description
When using the sample code in the documentation:
$ec2_instance = new Zend_Service_Amazon_Ec2_Instance('aws_key',
'aws_secret_key');
$return = $ec2_instance->describe();
to return a list of instances, I got no results. But I was indeed running an instance. After searching I found the solution here: http://developer.amazonwebservices.com/connect/… . I successfully managed to list my european instances when changing the following:
const EC2_ENDPOINT = 'ec2.amazonaws.com';
to
const EC2_ENDPOINT = 'eu-west-1.ec2.amazonaws.com';
I suggest adding a setEndpoint / setRegion method to the Ec2 classes.
Comments
Posted by Jon Whitcraft (sidhighwind) on 2009-05-01T07:52:23.000+0000
I will work on this and get something in 1.8.1
Posted by Jon Whitcraft (sidhighwind) on 2009-05-13T16:01:47.000+0000
I missed 1.8.1 due to time contraints with my RL job. I'm working on this tonight so it will be in 1.8.2
Posted by Jon Whitcraft (sidhighwind) on 2009-05-20T08:21:15.000+0000
This was fixed with r15647