Skip to content

Commit d4d4a69

Browse files
authored
Merge pull request #4956 from akalongman/master
[5.8] Use correct env name for AWS region from env.example
2 parents f84a69e + b34328a commit d4d4a69

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
'driver' => 'dynamodb',
8181
'key' => env('AWS_ACCESS_KEY_ID'),
8282
'secret' => env('AWS_SECRET_ACCESS_KEY'),
83-
'region' => env('AWS_REGION', 'us-east-1'),
83+
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
8484
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
8585
],
8686

config/queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
'secret' => env('AWS_SECRET_ACCESS_KEY'),
5656
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
5757
'queue' => env('SQS_QUEUE', 'your-queue-name'),
58-
'region' => env('AWS_REGION', 'us-east-1'),
58+
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
5959
],
6060

6161
'redis' => [

config/services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'ses' => [
2828
'key' => env('AWS_ACCESS_KEY_ID'),
2929
'secret' => env('AWS_SECRET_ACCESS_KEY'),
30-
'region' => env('AWS_REGION', 'us-east-1'),
30+
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
3131
],
3232

3333
'sparkpost' => [

0 commit comments

Comments
 (0)