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

Update AWS environment variable defaults
This commit is contained in:
Taylor Otwell 2017-10-26 07:17:27 -05:00 committed by GitHub
commit e441d9cac8
1 changed files with 3 additions and 3 deletions

View File

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