Browse Source

Merge pull request #4470 from michaeldyrynda/chore/consistent-aws-env-vars

Update AWS environment variable defaults
Taylor Otwell 6 years ago
parent
commit
e441d9cac8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      config/filesystems.php

+ 3 - 3
config/filesystems.php

@@ -57,9 +57,9 @@ return [
 
         's3' => [
             'driver' => 's3',
-            'key' => env('AWS_KEY'),
-            'secret' => env('AWS_SECRET'),
-            'region' => env('AWS_REGION'),
+            'key' => env('AWS_ACCESS_KEY_ID'),
+            'secret' => env('AWS_SECRET_ACCESS_KEY'),
+            'region' => env('AWS_DEFAULT_REGION'),
             'bucket' => env('AWS_BUCKET'),
         ],