From 9f17598136d0a0c73ba811bc269e422179c87f1f Mon Sep 17 00:00:00 2001 From: Anil Natha Date: Wed, 18 Jun 2025 12:55:04 -0700 Subject: [PATCH] Added new field, isPortalIntegrated, to the health endpoint metadata. Added the new field, isPortalIntegrated, to the health endpoint information. Set the field to be `false` which informs the portal that the respective service, if it is a UI, should be opened in a new window if accessed from the portal's menu. --- tf-module/unity-cumulus/main.tf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tf-module/unity-cumulus/main.tf b/tf-module/unity-cumulus/main.tf index 717f1433..2bbcdb09 100644 --- a/tf-module/unity-cumulus/main.tf +++ b/tf-module/unity-cumulus/main.tf @@ -185,12 +185,13 @@ resource "aws_ssm_parameter" "health_check_value" { type = "String" tier = "Advanced" value = jsonencode({ - healthCheckUrl = "${var.uds_base_url}/${var.dapa_api_prefix}/collections", - landingPageUrl = "${var.unity_ui_base_url}/data/stac_browser/", - componentCategory = "catalogs" - componentName = "Data Catalog", - componentType = "ui" - description = "The STAC Browser to help you browse and search the data catalog for your outputs and other data ingested into the MDPS data system." + healthCheckUrl = "${var.uds_base_url}/${var.dapa_api_prefix}/collections" + landingPageUrl = "${var.unity_ui_base_url}/data/stac_browser/" + componentCategory = "catalogs" + componentName = "Data Catalog" + componentType = "ui" + description = "The STAC Browser to help you browse and search the data catalog for your outputs and other data ingested into the MDPS data system." + isPortalIntegrated = false }) tags = var.tags overwrite = true