Skip to content

Commit

Permalink
fix aws credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
frostealth committed May 18, 2016
1 parent 65e8445 commit ebfe24f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/config/definitions/images.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,10 @@
'images.storage.adapters.s3.client-config' => [
'version' => '2006-03-01',
'region' => env('STORAGE_S3_REGION'),
'credentials' => [
'key' => env('STORAGE_S3_KEY'),
'secret' => env('STORAGE_S3_SECRET'),
],
'credentials' => get('images.storage.adapters.s3.client-credentials'),
],
'images.storage.adapters.s3.client-credentials' => [
'key' => env('STORAGE_S3_KEY'),
'secret' => env('STORAGE_S3_SECRET'),
],
];

0 comments on commit ebfe24f

Please sign in to comment.