Skip to content

Instantly share code, notes, and snippets.

@benjamincrozat
Created May 18, 2020 14:44
Show Gist options
  • Save benjamincrozat/8fdda016caa8e22c0374cff46e11abe3 to your computer and use it in GitHub Desktop.
Save benjamincrozat/8fdda016caa8e22c0374cff46e11abe3 to your computer and use it in GitHub Desktop.
<?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