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