Skip to content

Commit

Permalink
update README to reflect changes in env names
Browse files Browse the repository at this point in the history
  • Loading branch information
vyuldashev committed Nov 19, 2020
1 parent f685d28 commit a21e08d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ You'll need to configure the queue connection in your config/queue.php
'connections' => [
'sqs-sns' => [
'driver' => 'sqs-sns',
'key' => env('AWS_ACCESS_KEY', 'your-public-key'),
'secret' => env('AWS_SECRET_ACCESS_KEY', 'your-secret-key'),
'queue' => env('QUEUE_URL', 'your-queue-url'),
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'queue' => env('SQS_QUEUE', 'your-queue-url'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'routes' => [
// you can use the "Subject" field
Expand Down

0 comments on commit a21e08d

Please sign in to comment.