Skip to content

Commit e38bdff

Browse files
fix: clarify skuCapacity comment in main.bicep for WAF deployment
1 parent 52e6cd6 commit e38bdff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ 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 ? 1 : 1
1069+
skuCapacity: enableScalability ? 1 : 1 // skuCapacity set to 1 (not 3) due to multiple agents created per type during WAF deployment
10701070
// WAF aligned configuration for Redundancy
10711071
zoneRedundant: enableRedundancy ? true : false
10721072
}

0 commit comments

Comments
 (0)