Skip to content

Commit a4402f2

Browse files
authored
Merge pull request #4516 from pavinthan/patch-2
Update SQS config
2 parents 3f0e742 + bafe459 commit a4402f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config/queue.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050

5151
'sqs' => [
5252
'driver' => 'sqs',
53-
'key' => 'your-public-key',
54-
'secret' => 'your-secret-key',
55-
'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
56-
'queue' => 'your-queue-name',
57-
'region' => 'us-east-1',
53+
'key' => env('SQS_KEY', 'your-public-key'),
54+
'secret' => env('SQS_SECRET', 'your-secret-key'),
55+
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
56+
'queue' => env('SQS_NAME', 'your-queue-name'),
57+
'region' => env('SQS_REGION', 'us-east-1'),
5858
],
5959

6060
'redis' => [

0 commit comments

Comments
 (0)