Skip to content

Commit

Permalink
Disable public network access to API App Service - traffic is routed …
Browse files Browse the repository at this point in the history
…through PE from App Gateway (#4022)

* Disable public network access to API - traffic should be routed through App Gateway via PE

* Update core version and changelog

* Update version.txt
  • Loading branch information
jonnyry authored Jul 16, 2024
1 parent 43eb846 commit 5d5d8b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ENHANCEMENTS:
* Ability to host TRE on a custom domain ([#4014](https://github.com/microsoft/AzureTRE/pull/4014))

BUG FIXES:
* Disable public network access to the API App Service ([#3986](https://github.com/microsoft/AzureTRE/issues/3986))

COMPONENTS:

Expand Down
1 change: 1 addition & 0 deletions core/terraform/api-webapp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ resource "azurerm_linux_web_app" "api" {
https_only = true
key_vault_reference_identity_id = azurerm_user_assigned_identity.id.id
virtual_network_subnet_id = module.network.web_app_subnet_id
public_network_access_enabled = false
tags = local.tre_core_tags

app_settings = {
Expand Down
2 changes: 1 addition & 1 deletion core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.3"
__version__ = "0.10.4"

0 comments on commit 5d5d8b0

Please sign in to comment.