Skip to content

Commit 67deea0

Browse files
fix: update maxReplicas to 1 for WAF deployment scaling
1 parent ec8ba24 commit 67deea0

File tree

2 files changed

+56
-55
lines changed

2 files changed

+56
-55
lines changed

infra/main.bicep

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,8 @@ module containerAppBackend 'br/public:avm/res/app/container-app:0.17.0' = {
715715
ingressTargetPort: 8000
716716
ingressExternal: true
717717
scaleSettings: {
718-
maxReplicas: enableScaling ? 3 : 1
718+
// maxReplicas: enableScaling ? 3 : 1
719+
maxReplicas: 1 // maxReplicas set to 1 (not 3) due to multiple agents created per type during WAF deployment
719720
minReplicas: 1
720721
rules: enableScaling
721722
? [

0 commit comments

Comments
 (0)