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' => [ 's3' => [
'driver' => 's3', 'driver' => 's3',
'key' => 'your-key', 'key' => env('AWS_KEY'),
'secret' => 'your-secret', 'secret' => env('AWS_SECRET'),
'region' => 'your-region', 'region' => env('AWS_REGION'),
'bucket' => 'your-bucket', 'bucket' => env('AWS_BUCKET'),
], ],
], ],