Skip to content

Commit fdaf312

Browse files
Merge pull request #264 from microsoft/psl-bug-macae-19139
fix: Disable Zone Redundancy
2 parents af13074 + f839d24 commit fdaf312

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

infra/main.bicep

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ module aiFoundryStorageAccount 'br/public:avm/res/storage/storage-account:0.18.2
861861
diagnosticSettings: [{ workspaceResourceId: logAnalyticsWorkspaceId }]
862862
}
863863
publicNetworkAccess: virtualNetworkEnabled ? 'Disabled' : 'Enabled'
864-
allowBlobPublicAccess: virtualNetworkEnabled ? false : true
864+
allowBlobPublicAccess: false
865865
privateEndpoints: virtualNetworkEnabled
866866
? map(items(storageAccountPrivateDnsZones), zone => {
867867
name: 'pep-${zone.value}-${aiFoundryStorageAccountResourceName}'
@@ -1036,6 +1036,7 @@ module cosmosDb 'br/public:avm/res/document-db/database-account:0.12.0' = if (co
10361036
{
10371037
locationName: cosmosDbAccountConfiguration.?location ?? solutionLocation
10381038
failoverPriority: 0
1039+
isZoneRedundant: false
10391040
}
10401041
]
10411042
capabilitiesToAdd: [
@@ -1073,7 +1074,7 @@ module containerAppEnvironment 'modules/container-app-environment.bicep' = if (c
10731074
location: containerAppEnvironmentConfiguration.?location ?? solutionLocation
10741075
logAnalyticsResourceId: logAnalyticsWorkspaceId
10751076
publicNetworkAccess: 'Enabled'
1076-
zoneRedundant: virtualNetworkEnabled ? true : false
1077+
zoneRedundant: false
10771078
applicationInsightsConnectionString: applicationInsights.outputs.connectionString
10781079
enableTelemetry: enableTelemetry
10791080
subnetResourceId: virtualNetworkEnabled

0 commit comments

Comments
 (0)