diff --git a/modules/osdu_k8s/hrlm_eds.tf b/modules/osdu_k8s/hrlm_eds.tf
deleted file mode 100644
index 8faa2f20704edd234fafe10c6b779bd7bc7c15cd..0000000000000000000000000000000000000000
--- a/modules/osdu_k8s/hrlm_eds.tf
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
-*  Copyright 2024 Google LLC
-*  Copyright 2024 EPAM
-*
-*  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.
-*/
-
-resource "helm_release" "eds" {
-  count = var.eds_enabled ? 1 : 0
-  # FIXME: Update depends_on when all services are ready
-  depends_on = [
-    helm_release.gc_secrets,
-    helm_release.k8s-resources,
-    helm_release.osdu_gc
-  ]
-  name            = "eds"
-  repository      = "oci://${var.repository}/osdu/platform/data-flow/ingestion/external-data-sources/eds-dms/gc-helm"
-  chart           = "gc-eds-dms-deploy"
-  version         = var.eds_svc_version
-  namespace       = var.services_namespace
-  recreate_pods   = true
-  timeout         = 1800
-  upgrade_install = var.upgrade
-
-  set {
-    name  = "global.domain"
-    value = var.ingress_domain
-  }
-  set {
-    name  = "global.tier"
-    value = var.tier
-  }
-  set {
-    name  = "global.autoscaling"
-    value = var.autoscaling
-  }
-  set {
-    name  = "conf.replicas"
-    value = local.service_replicas
-  }
-  set {
-    name  = "conf.logLevel"
-    value = local.log_level
-  }
-}
diff --git a/modules/osdu_k8s/inputs_versions.tf b/modules/osdu_k8s/inputs_versions.tf
index 8f33c4b3503c0e3dde364d175f5453640b14be16..2bb4f936e53abfd69ece13ef62e4a3ffbec52c3b 100644
--- a/modules/osdu_k8s/inputs_versions.tf
+++ b/modules/osdu_k8s/inputs_versions.tf
@@ -106,8 +106,3 @@ variable "workflow_version" {
   type        = string
   default     = "0.0.7-latest"
 }
-variable "eds_svc_version" {
-  description = "Version of the eds service"
-  type        = string
-  default     = "0.0.7-latest"
-}