From 04821c6fc65b652f58be96dea55db64845f7bad3 Mon Sep 17 00:00:00 2001 From: Ankit Bhardwaj Bhardwaj Date: Thu, 14 Nov 2024 14:56:47 +0530 Subject: [PATCH] INFRA-4009 | Ankit Bhardwaj | add internal gateway for iapl prod (#721) * INFRA-4009 | Ankit Bhardwaj | add external gateway for IAPL prod * INFRA-4009 | Ankit Bhardwaj | add internal gateway for iapl prod --- src/constants/CommonApiGatewayUrl.tsx | 1 + src/coreform/deployment/ApiGatewayForm.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/constants/CommonApiGatewayUrl.tsx b/src/constants/CommonApiGatewayUrl.tsx index 12f8461..066d9a2 100644 --- a/src/constants/CommonApiGatewayUrl.tsx +++ b/src/constants/CommonApiGatewayUrl.tsx @@ -53,4 +53,5 @@ export class InternalCommonApiGatewayUrl { 'qa-internal-gateway.np.navi-ppl.in', ]; public static readonly PPL_PROD = ['internal-gateway.prod.navi-ppl.in']; + public static readonly IAPL_PROD = ['internal-gateway.prod.navi-iapl.in']; } diff --git a/src/coreform/deployment/ApiGatewayForm.tsx b/src/coreform/deployment/ApiGatewayForm.tsx index f9a9975..3aaa848 100644 --- a/src/coreform/deployment/ApiGatewayForm.tsx +++ b/src/coreform/deployment/ApiGatewayForm.tsx @@ -65,6 +65,7 @@ const InternalCommonApiGatewayUrlMap = { [Cluster.SA_PROD]: InternalCommonApiGatewayUrl.SA_PROD, [Cluster.PPL_NONPROD]: InternalCommonApiGatewayUrl.PPL_NP, [Cluster.PPL_PROD]: InternalCommonApiGatewayUrl.PPL_PROD, + [Cluster.IAPL_PROD]: InternalCommonApiGatewayUrl.IAPL_PROD, }; const rateLimitOptions = ['header', 'path'];