Skip to content

Commit

Permalink
Add DYNAMODB_ENDPOINT to the cache config
Browse files Browse the repository at this point in the history
This adds the DYNAMODB_ENDPOINT environment variable to the
dynamodb store of the cache cofig.

Its usage is implemented in the framework as laravel/framework#28600
  • Loading branch information
imabug committed May 30, 2019
1 parent 4809e14 commit 7a32b83
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],

],
Expand Down

0 comments on commit 7a32b83

Please sign in to comment.