From 7d6c60c6049e08a4580ace821331a3c5fb8fdd8a Mon Sep 17 00:00:00 2001 From: John Ferdie Abueg Date: Thu, 17 Oct 2024 10:02:33 +0200 Subject: [PATCH] finish --- WorkshopBackend/OrderService/Controllers/OrderController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WorkshopBackend/OrderService/Controllers/OrderController.cs b/WorkshopBackend/OrderService/Controllers/OrderController.cs index e49adda..02ac583 100644 --- a/WorkshopBackend/OrderService/Controllers/OrderController.cs +++ b/WorkshopBackend/OrderService/Controllers/OrderController.cs @@ -15,8 +15,8 @@ public class OrderController : ControllerBase private readonly IAmazonSQS _sqs; private readonly IAmazonSimpleNotificationService _sns; private readonly IAmazonEventBridge _eventBridge; - private readonly string _queueUrl = ""; // Format of https://.* - private readonly string _topicArn = ""; // Format of arn:aws.* + private readonly string _queueUrl = "https://eu-north-1.queue.amazonaws.com/637423341661/johnfaOrderQueue"; // Format of https://.* + private readonly string _topicArn = "arn:aws:sns:eu-north-1:637423341661:johnfaOrderCreatedTopic"; // Format of arn:aws.* public OrderController() {