Skip to content

Commit

Permalink
Remove TLS1.0/1.1 support. Resolves #3914 (#3916)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyry authored May 1, 2024
1 parent cb59c99 commit c8e5ed3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ENHANCEMENTS:

BUG FIXES:
* Update to Resource Processor Image, now using Ubuntu 22.04 (jammy). Part of ([#3523](https://github.com/microsoft/AzureTRE/issues/3523))
* Remove TLS1.0/1.1 support from Application Gateway

COMPONENTS:

Expand Down
6 changes: 6 additions & 0 deletions core/terraform/appgateway/appgateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ resource "azurerm_application_gateway" "agw" {
key_vault_secret_id = azurerm_key_vault_certificate.tlscert.secret_id
}

# SSL policy
ssl_policy {
policy_type = "Predefined"
policy_name = "AppGwSslPolicy20220101"
}

# Backend pool with the static website in storage account.
backend_address_pool {
name = local.staticweb_backend_pool_name
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.9.8"
__version__ = "0.9.9"

0 comments on commit c8e5ed3

Please sign in to comment.