Skip to content

Commit 5baf79b

Browse files
U/xiaoyun/1108 (#234)
## Purpose <!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? --> * ... address #223 ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [ ] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code <!-- Add steps to run the tests suite and/or manually test --> ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information <!-- Add any other helpful information that may be needed here. -->
1 parent 7942f45 commit 5baf79b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

infra/core/storage/storage-account.bicep

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ param allowBlobPublicAccess bool = true
1111
param allowCrossTenantReplication bool = true
1212
param allowSharedKeyAccess bool = true
1313
param containers array = []
14+
param supportsHttpsTrafficOnly bool = true
1415
param defaultToOAuthAuthentication bool = false
1516
param deleteRetentionPolicy object = {}
1617
@allowed([ 'AzureDnsZone', 'Standard' ])
@@ -41,6 +42,7 @@ resource storage 'Microsoft.Storage/storageAccounts@2022-05-01' = {
4142
minimumTlsVersion: minimumTlsVersion
4243
networkAcls: networkAcls
4344
publicNetworkAccess: publicNetworkAccess
45+
supportsHttpsTrafficOnly: supportsHttpsTrafficOnly
4446
}
4547

4648
resource blobServices 'blobServices' = if (!empty(containers)) {

0 commit comments

Comments
 (0)