Skip to content

Commit 87667b2

Browse files
committed
update env variable stubs
1 parent 3959c09 commit 87667b2

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ MAIL_USERNAME=null
3030
MAIL_PASSWORD=null
3131
MAIL_ENCRYPTION=null
3232

33+
AWS_ACCESS_KEY_ID=
34+
AWS_SECRET_ACCESS_KEY=
35+
3336
PUSHER_APP_ID=
3437
PUSHER_APP_KEY=
3538
PUSHER_APP_SECRET=

config/queue.php

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

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

6060
'redis' => [

config/services.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
],
2222

2323
'ses' => [
24-
'key' => env('SES_KEY'),
25-
'secret' => env('SES_SECRET'),
26-
'region' => env('SES_REGION', 'us-east-1'),
24+
'key' => env('AWS_ACCESS_KEY_ID'),
25+
'secret' => env('AWS_SECRET_ACCESS_KEY'),
26+
'region' => env('AWS_REGION', 'us-east-1'),
2727
],
2828

2929
'sparkpost' => [

0 commit comments

Comments
 (0)