From 3367e47f0ee5199a0a6665c2bf8d56b69dd10177 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Mon, 6 May 2024 15:54:32 +1000 Subject: [PATCH] Force minimum TLS version to 1.2 --- infra/resources.bicep | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infra/resources.bicep b/infra/resources.bicep index 4fa1debb..816a7cd5 100644 --- a/infra/resources.bicep +++ b/infra/resources.bicep @@ -169,6 +169,7 @@ resource web 'Microsoft.Web/sites@2022-03-01' = { linuxFxVersion: 'PYTHON|3.11' ftpsState: 'Disabled' appCommandLine: 'startup.sh' + minTlsVersion: '1.2' } httpsOnly: true } @@ -357,6 +358,7 @@ resource redisCache 'Microsoft.Cache/redis@2023-04-01' = { enableNonSslPort:false redisVersion:'6' publicNetworkAccess:'Disabled' + minimumTlsVersion: '1.2' } }