make env variables for aws

This commit is contained in:
Taylor Otwell 2017-01-17 07:41:12 -06:00
parent 590257fbf6
commit 7cf27b2146
1 changed files with 4 additions and 4 deletions

View File

@ -57,10 +57,10 @@
's3' => [
'driver' => 's3',
'key' => 'your-key',
'secret' => 'your-secret',
'region' => 'your-region',
'bucket' => 'your-bucket',
'key' => env('AWS_KEY'),
'secret' => env('AWS_SECRET'),
'region' => env('AWS_REGION'),
'bucket' => env('AWS_BUCKET'),
],
],