Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelaguiar committed Aug 24, 2024
1 parent 2b0d755 commit 5b7d92f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions config/laravel-echo-api-gateway.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?php

return [

'connection' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'token' => env('AWS_SESSION_TOKEN'),
'region' => env('AWS_DEFAULT_REGION", "us-east-1'),
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'token' => env('AWS_SESSION_TOKEN'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],

'api' => [
Expand All @@ -15,9 +16,7 @@

'dynamodb' => [
'endpoint' => env('DYNAMODB_ENDPOINT'),
'table' => env(
'LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE',
'connections'
),
'table' => env('LARAVEL_ECHO_API_GATEWAY_DYNAMODB_TABLE', 'connections'),
],

];

0 comments on commit 5b7d92f

Please sign in to comment.