Skip to content

Commit 9f17598

Browse files
authored
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.
1 parent 9365112 commit 9f17598

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tf-module/unity-cumulus/main.tf

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,13 @@ resource "aws_ssm_parameter" "health_check_value" {
185185
type = "String"
186186
tier = "Advanced"
187187
value = jsonencode({
188-
healthCheckUrl = "${var.uds_base_url}/${var.dapa_api_prefix}/collections",
189-
landingPageUrl = "${var.unity_ui_base_url}/data/stac_browser/",
190-
componentCategory = "catalogs"
191-
componentName = "Data Catalog",
192-
componentType = "ui"
193-
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."
188+
healthCheckUrl = "${var.uds_base_url}/${var.dapa_api_prefix}/collections"
189+
landingPageUrl = "${var.unity_ui_base_url}/data/stac_browser/"
190+
componentCategory = "catalogs"
191+
componentName = "Data Catalog"
192+
componentType = "ui"
193+
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."
194+
isPortalIntegrated = false
194195
})
195196
tags = var.tags
196197
overwrite = true

0 commit comments

Comments
 (0)