Skip to content

Commit d75a0f3

Browse files
authored
Add SES_REGION to local environment file
The region used by SES was hardcoded into the config file, when all other values were set as environment variables. Tweaked to keep the region consistent with other config options
1 parent 3dc19a0 commit d75a0f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'ses' => [
2323
'key' => env('SES_KEY'),
2424
'secret' => env('SES_SECRET'),
25-
'region' => 'us-east-1',
25+
'region' => env('SES_REGION','us-east-1'),
2626
],
2727

2828
'sparkpost' => [

0 commit comments

Comments
 (0)