Skip to content

Commit 9bd4885

Browse files
Merge pull request #738 from microsoft/psl-pk-scaleinstance
fix: reduced the replica instance count to 1 for WAF version
2 parents 3cddee5 + f09167f commit 9bd4885

File tree

3 files changed

+65
-62
lines changed

3 files changed

+65
-62
lines changed

infra/main.bicep

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,8 @@ module webServerFarm 'br/public:avm/res/web/serverfarm:0.5.0' = {
10661066
diagnosticSettings: enableMonitoring ? [{ workspaceResourceId: logAnalyticsWorkspaceResourceId }] : null
10671067
// WAF aligned configuration for Scalability
10681068
skuName: enableScalability || enableRedundancy ? 'P1v3' : 'B3'
1069-
skuCapacity: enableScalability ? 3 : 1
1069+
// skuCapacity: enableScalability ? 3 : 1
1070+
skuCapacity: 1 // skuCapacity set to 1 (not 3) due to multiple agents created per type during WAF deployment
10701071
// WAF aligned configuration for Redundancy
10711072
zoneRedundant: enableRedundancy ? true : false
10721073
}

0 commit comments

Comments
 (0)