Skip to content

Added new field, isPortalIntegrated, to the health endpoint metadata. #598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions tf-module/unity-cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading