diff --git a/CHANGELOG.md b/CHANGELOG.md index 21931ffa37..0b1493a915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,10 @@ BUG FIXES: * Nexus might fail to deploy due to wrong identity used in key-vault extension ([#3492](https://github.com/microsoft/AzureTRE/issues/3492)) * Airlock notifier needs SCM basic-auth enabled to install ([#3509](https://github.com/microsoft/AzureTRE/issues/3509)) * `load_env.sh` is able to use an equal `=` sign in values ([#3535](https://github.com/microsoft/AzureTRE/issues/3535)) +* Azure ML connection URI is an object, not string ([#3486](https://github.com/microsoft/AzureTRE/issues/3486)) * Update key in Linux VM deploy script ([#3434](https://github.com/microsoft/AzureTRE/issues/3434)) + COMPONENTS: ## 0.11.0 (April 24, 2023) diff --git a/templates/workspace_services/azureml/porter.yaml b/templates/workspace_services/azureml/porter.yaml index 3531d5ed35..45bd8e9112 100644 --- a/templates/workspace_services/azureml/porter.yaml +++ b/templates/workspace_services/azureml/porter.yaml @@ -1,7 +1,7 @@ --- schemaVersion: 1.0.0 name: tre-service-azureml -version: 0.8.2 +version: 0.8.4 description: "An Azure TRE service for Azure Machine Learning" registry: azuretre dockerfile: Dockerfile.tmpl @@ -85,11 +85,6 @@ outputs: applyTo: - install - upgrade - - name: internal_connection_uri - type: string - applyTo: - - install - - upgrade - name: workspace_address_spaces type: string applyTo: @@ -154,7 +149,6 @@ install: - name: azureml_acr_id - name: azureml_storage_account_id - name: connection_uri - - name: internal_connection_uri - name: workspace_address_spaces - name: aml_subnet_address_prefixes - name: storage_tag @@ -188,7 +182,6 @@ upgrade: - name: azureml_acr_id - name: azureml_storage_account_id - name: connection_uri - - name: internal_connection_uri - name: workspace_address_spaces - name: aml_subnet_address_prefixes - name: storage_tag diff --git a/templates/workspace_services/azureml/terraform/outputs.tf b/templates/workspace_services/azureml/terraform/outputs.tf index 82306ad545..48a152634f 100644 --- a/templates/workspace_services/azureml/terraform/outputs.tf +++ b/templates/workspace_services/azureml/terraform/outputs.tf @@ -15,11 +15,7 @@ output "aml_fqdn" { } output "connection_uri" { - value = var.is_exposed_externally ? format("%s/?wsid=%s&tid=%s", module.terraform_azurerm_environment_configuration.aml_studio_endpoint, azurerm_machine_learning_workspace.aml_workspace.id, var.arm_tenant_id) : "" -} - -output "internal_connection_uri" { - value = var.is_exposed_externally ? "" : format("%s/?wsid=%s&tid=%s", module.terraform_azurerm_environment_configuration.aml_studio_endpoint, azurerm_machine_learning_workspace.aml_workspace.id, var.arm_tenant_id) + value = format("%s/?wsid=%s&tid=%s", module.terraform_azurerm_environment_configuration.aml_studio_endpoint, azurerm_machine_learning_workspace.aml_workspace.id, var.arm_tenant_id) } output "workspace_address_spaces" {