We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4c45b1 commit f277771Copy full SHA for f277771
infra/core/storage/storage-account.bicep
@@ -13,6 +13,7 @@ param deleteRetentionPolicy object = {}
13
param dnsEndpointType string = 'Standard'
14
param kind string = 'StorageV2'
15
param minimumTlsVersion string = 'TLS1_2'
16
+param requireHttpsConnection bool = true
17
@allowed([ 'Enabled', 'Disabled' ])
18
param publicNetworkAccess string = 'Disabled'
19
param sku object = { name: 'Standard_LRS' }
@@ -38,6 +39,7 @@ resource storage 'Microsoft.Storage/storageAccounts@2022-05-01' = {
38
39
defaultAction: 'Allow'
40
}
41
publicNetworkAccess: publicNetworkAccess
42
+ supportsHttpsTrafficOnly: requireHttpsConnection
43
44
45
resource blobServices 'blobServices' = if (!empty(containers)) {
0 commit comments