From d0bcff66a1d2c39dab436e7ca0f705bb096cf4a7 Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Thu, 16 May 2024 10:14:12 +0100 Subject: [PATCH] Set the minimum TLS version of storage account access to v1.2 --- rg.bicep | 1 + 1 file changed, 1 insertion(+) diff --git a/rg.bicep b/rg.bicep index 0d06482..cd566e4 100644 --- a/rg.bicep +++ b/rg.bicep @@ -37,6 +37,7 @@ resource uami 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { var common_storage_properties = { publicNetworkAccess: 'Enabled' allowBlobPublicAccess: false + minimumTlsVersion: 'TLS1_2' } var storage_properties = use_shared_keys ? common_storage_properties : union(common_storage_properties, { allowSharedKeyAccess: false