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
realodix committed May 31, 2019
1 parent 3b6aee9 commit febdd24
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 @@ -82,6 +82,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 febdd24

Please sign in to comment.