@@ -131,7 +131,7 @@ param aiFoundryAiServicesConfiguration aiServicesConfigurationType = {
131131 sku : 'S0'
132132 deployments : null //Default value set on module configuration
133133 subnetResourceId : null //Default value set on module configuration
134- modelCapacity : 140
134+ modelCapacity : 50
135135}
136136
137137@description ('Optional. The configuration to apply for the AI Foundry Storage Account resource.' )
@@ -736,7 +736,7 @@ var aiFoundryAiServicesModelDeployment = {
736736 sku : {
737737 name : 'GlobalStandard'
738738 //Curently the capacity is set to 140 for opinanal performance.
739- capacity : aiFoundryAiServicesConfiguration .?modelCapacity ?? 140
739+ capacity : aiFoundryAiServicesConfiguration .?modelCapacity ?? 50
740740 }
741741 raiPolicyName : 'Microsoft.Default'
742742}
@@ -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