Update SQS config

This commit is contained in:
Pavinthan 2017-12-19 12:42:36 +05:30 committed by GitHub
parent 3f0e742421
commit 41ea79f20e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -50,11 +50,11 @@
'sqs' => [
'driver' => 'sqs',
'key' => 'your-public-key',
'secret' => 'your-secret-key',
'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
'queue' => 'your-queue-name',
'region' => 'us-east-1',
'key' => env('SQS_KEY', 'your-public-key'),
'secret' => env('SQS_SECRET', 'your-secret-key'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE_NAME', 'your-queue-name'),
'region' => env('SQS_QUEUE_REGION', 'us-east-1'),
],
'redis' => [