Created
May 18, 2020 14:44
-
-
Save benjamincrozat/8fdda016caa8e22c0374cff46e11abe3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
'connections' => [ | |
'sqs' => [ | |
'driver' => 'sqs', | |
'key' => env('AWS_ACCESS_KEY_ID'), | |
'secret' => env('AWS_SECRET_ACCESS_KEY'), | |
'token' => env('AWS_SESSION_TOKEN'), | |
'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'), | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment