Skip to content
This repository has been archived by the owner on Jan 29, 2021. It is now read-only.

Commit

Permalink
Prefixing the SQS Env vars with AWS_ for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
weerd committed Aug 3, 2020
1 parent a1dfc38 commit 262f138
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ AWS_SECRET_ACCESS_KEY=
AWS_S3_BUCKET=
AWS_S3_REGION=us-east-1
AWS_S3_URL=
AWS_SQS_PREFIX=
AWS_SQS_QUEUE=
AWS_SQS_REGION=us-east-1

# Northstar
Expand Down
4 changes: 2 additions & 2 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'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'),
'prefix' => env('AWS_SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('AWS_SQS_QUEUE', 'your-queue-name'),
'region' => env('AWS_SQS_REGION', 'us-east-1'),
],

Expand Down

0 comments on commit 262f138

Please sign in to comment.