File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,13 @@ param skuName string = 'Standard_LRS'
1010@description ('The kind of the storage account' )
1111param kind string = 'StorageV2'
1212
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+
1320resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
1421 name : storageAccountName
1522 location : location
@@ -19,6 +26,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = {
1926 kind : kind
2027 properties : {
2128 accessTier : 'Hot'
29+ minimumTlsVersion : minimumTlsVersion
2230 }
2331}
2432
You can’t perform that action at this time.
0 commit comments