Skip to content

Commit

Permalink
Default supportsHttpsTrafficOnly to true
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney authored Sep 1, 2023
1 parent 07137cf commit 9cc00be
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ param deleteRetentionPolicy object = {}
param dnsEndpointType string = 'Standard'
param kind string = 'StorageV2'
param minimumTlsVersion string = 'TLS1_2'
param supportsHttpsTrafficOnly bool = true
param networkAcls object = {
bypass: 'AzureServices'
defaultAction: 'Allow'
Expand All @@ -42,6 +43,7 @@ resource storage 'Microsoft.Storage/storageAccounts@2022-05-01' = {
minimumTlsVersion: minimumTlsVersion
networkAcls: networkAcls
publicNetworkAccess: publicNetworkAccess
supportsHttpsTrafficOnly: supportsHttpsTrafficOnly
}

resource blobServices 'blobServices' = if (!empty(containers)) {
Expand Down

0 comments on commit 9cc00be

Please sign in to comment.