From 0f913bf8d557439f4de2b991ee4629e58a4730a0 Mon Sep 17 00:00:00 2001 From: Victor Arbues Date: Thu, 20 Feb 2025 12:07:28 +0000 Subject: [PATCH] HIPP-1937: Revert spike changes back (#261) --- conf/application.conf | 1 - conf/hipEnvironments2.conf | 52 -------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 conf/hipEnvironments2.conf diff --git a/conf/application.conf b/conf/application.conf index d96dd261..2e643ef7 100755 --- a/conf/application.conf +++ b/conf/application.conf @@ -14,7 +14,6 @@ include "backend.conf" include "hipEnvironments.conf" -include "hipEnvironments2.conf" # This is the main configuration file for the application. # ~~~~~ diff --git a/conf/hipEnvironments2.conf b/conf/hipEnvironments2.conf deleted file mode 100644 index 2bb117d5..00000000 --- a/conf/hipEnvironments2.conf +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2024 HM Revenue & Customs -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -hipEnvironments2 = { - environments = { - production = { - id = "production", - rank = 1, - apimUrl = "http://localhost:15026/api-hub-apim-stubs/platform-management/environments/production" - clientId = "apim-stub-client-id", - secret = "apim-stub-secret", - useProxy = false, - apimEnvironmentName = "production" - }, - preproduction = { - id = "preproduction", - rank = 2, - apimUrl = "http://localhost:15027/apim-proxy/api-hub-apim-stubs/platform-management/environments/preproduction" - clientId = "apim-stub-client-id", - secret = "apim-stub-secret", - useProxy = true, - apiKey = "some-magic-key", - promoteTo = "production", - apimEnvironmentName = "preproduction" - }, - test = { - id = "test", - rank = 3, - apimUrl = "http://localhost:15027/apim-proxy/api-hub-apim-stubs/platform-management/environments/test" - clientId = "apim-stub-client-id", - secret = "apim-stub-secret", - useProxy = true, - apiKey = "some-magic-key", - promoteTo = "preproduction", - apimEnvironmentName = "test" - } - }, - production = "production", - deployTo = "test", - validateIn = "production" -}