From 41ea79f20e4e31a9078b37a6dabff81478c8b345 Mon Sep 17 00:00:00 2001 From: Pavinthan Date: Tue, 19 Dec 2017 12:42:36 +0530 Subject: [PATCH] Update SQS config --- config/queue.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/queue.php b/config/queue.php index 4d83ebd0..0716ea07 100644 --- a/config/queue.php +++ b/config/queue.php @@ -50,11 +50,11 @@ 'sqs' => [ 'driver' => 'sqs', - 'key' => 'your-public-key', - 'secret' => 'your-secret-key', - 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', - 'queue' => 'your-queue-name', - 'region' => 'us-east-1', + 'key' => env('SQS_KEY', 'your-public-key'), + 'secret' => env('SQS_SECRET', 'your-secret-key'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE_NAME', 'your-queue-name'), + 'region' => env('SQS_QUEUE_REGION', 'us-east-1'), ], 'redis' => [