Skip to content

Commit

Permalink
Add new SQS queue suffix option (laravel#5252)
Browse files Browse the repository at this point in the history
As described in laravel/framework#31784, this option will allow to
define a queue name suffix.
  • Loading branch information
roberto-aguilar authored Mar 6, 2020
1 parent 641fcfb commit b0ce2ad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'your-queue-name'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],

Expand Down

0 comments on commit b0ce2ad

Please sign in to comment.