Skip to content

Commit

Permalink
Update TLS to the latest version for core web apps / function apps
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyry committed Feb 13, 2025
1 parent 2073749 commit fd11d09
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ENHANCEMENTS:
* Azure Cosmos DB should disable public network access ([#4322](https://github.com/microsoft/AzureTRE/issues/4322))
* Add bundle target to Makefile for handling different bundle types in single command ([#4372](https://github.com/microsoft/AzureTRE/issues/4372))
* Add Windows image field to the Admin VM template ([#4274](https://github.com/microsoft/AzureTRE/pull/4274))
* Update TLS to the latest version for core web apps / function apps (([#4351](https://github.com/microsoft/AzureTRE/issues/4351))

BUG FIXES:
* Fix upgrade when porter install has failed ([#4338](https://github.com/microsoft/AzureTRE/pull/4338))
Expand Down
1 change: 1 addition & 0 deletions core/terraform/airlock/airlock_processor.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ resource "azurerm_linux_function_app" "airlock_function_app" {
container_registry_use_managed_identity = true
vnet_route_all_enabled = true
ftps_state = "Disabled"
minimum_tls_version = "1.3"

application_stack {
docker {
Expand Down
2 changes: 1 addition & 1 deletion core/terraform/airlock/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">= 3.117"
version = ">= 4.14.0"
}
azapi = {
source = "Azure/azapi"
Expand Down
2 changes: 1 addition & 1 deletion core/terraform/api-webapp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "azurerm_linux_web_app" "api" {
vnet_route_all_enabled = true
container_registry_use_managed_identity = true
container_registry_managed_identity_client_id = azurerm_user_assigned_identity.id.client_id
minimum_tls_version = "1.2"
minimum_tls_version = "1.3"
ftps_state = "Disabled"

application_stack {
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.12.2"
__version__ = "0.12.3"

0 comments on commit fd11d09

Please sign in to comment.