From 1c583b3bc5b7f47a6d289093d1d80c076553e596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20H=C3=B6gberg?= Date: Wed, 29 May 2019 16:12:30 +0200 Subject: [PATCH] Add DYNAMODB_ENDPOINT to the cache config (#5034) 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 --- config/cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cache.php b/config/cache.php index 30f0cae2a..46751e627 100644 --- a/config/cache.php +++ b/config/cache.php @@ -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'), ], ],