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'];