Trying to get Object url and keep hitting a brickwall.
CredentialsException in InstanceProfileProvider.php line 79: Error retrieving credentials from the instance profile metadata server. (cURL error 28: Connection timed out after 1000 milliseconds (see http://curl.haxx.se/libcurl/c/libcurl-errors.html))
can anyone help with suggestions?
Hey,
I had the same problem with the SQS config for Laravel's queues and it turns out the way the credentials are passed has changed. The Laravel suggested way is:
$config => [ ... 'key' => 'XXXXXXX', 'secret' => 'XXXXXXXX', ... ];
And the way it works now is:
$config => [ ... 'credentials' => [ 'key' => 'XXXXXXX', 'secret' => 'XXXXXXXX', ], ... ],
Cheers, Mike
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community