From f1253690c5374c42fe54b7336063605380c39d56 Mon Sep 17 00:00:00 2001 From: Michael Dyrynda Date: Thu, 26 Oct 2017 10:44:00 +1030 Subject: [PATCH] Update AWS environment variable defaults Aids those users that are using the AWS CLI tools, by matching the `filesystems.disks.s3` configuration values with those that would be set in a user's native environment already. AWS Documentation [reference](http://docs.aws.amazon.com/cli/latest/userguide/cli-environment.html) Resolves laravel/internals#778 --- config/filesystems.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/filesystems.php b/config/filesystems.php index 4544f60c..9568e02f 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -57,9 +57,9 @@ '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'), ],