We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57593d8 commit dafc77fCopy full SHA for dafc77f
1 file changed
Deployment/bicep/azurestorageaccount.bicep
@@ -10,6 +10,13 @@ param skuName string = 'Standard_LRS'
10
@description('The kind of the storage account')
11
param kind string = 'StorageV2'
12
13
+@allowed([
14
+ 'TLS1_2'
15
+ 'TLS1_3'
16
+])
17
+@description('Optional. Set the minimum TLS version on request to storage. The TLS versions 1.0 and 1.1 are deprecated and not supported anymore.')
18
+param minimumTlsVersion string = 'TLS1_2'
19
+
20
resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
21
name: storageAccountName
22
location: location
@@ -19,6 +26,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
26
kind: kind
27
properties: {
28
accessTier: 'Hot'
29
+ minimumTlsVersion: minimumTlsVersion
30
}
23
31
24
32
0 commit comments