Skip to content
Merged
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
11 changes: 7 additions & 4 deletions tf-module/unity-cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,12 @@ 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/",
componentName = "Data Catalog",
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."
})
tags = var.tags
overwrite = true
Expand All @@ -201,4 +204,4 @@ resource "aws_ssm_parameter" "marketplace_prefix" {
tier = "Advanced"
tags = var.tags
overwrite = true
}
}
Loading