diff --git a/templates/core/terraform/json-to-env.sh b/templates/core/terraform/json-to-env.sh index 05690127bf..57b797b5a9 100755 --- a/templates/core/terraform/json-to-env.sh +++ b/templates/core/terraform/json-to-env.sh @@ -76,14 +76,6 @@ jq -r ' { "path": "registry_server", "env_var": "REGISTRY_SERVER" - }, - { - "path": "ui_api_key", - "env_var": "UI_API_KEY" - }, - { - "path": "ui_host_name", - "env_var": "UI_HOST_NAME" } ] as $env_vars_to_extract diff --git a/templates/core/terraform/outputs.tf b/templates/core/terraform/outputs.tf index 02375c7c7f..00ff260525 100644 --- a/templates/core/terraform/outputs.tf +++ b/templates/core/terraform/outputs.tf @@ -76,12 +76,3 @@ output "terraform_state_container_name" { output "registry_server" { value = var.docker_registry_server } - -output "ui_api_key" { - value = var.deploy_ui ? azurerm_static_site.tre-ui[0].api_key : "" - sensitive = true -} - -output "ui_host_name" { - value = var.deploy_ui ? azurerm_static_site.tre-ui[0].default_host_name : "" -}