Skip to content

Commit 1b9abf6

Browse files
fix: allow insecure HTTP for internal container communication
1 parent c0d5766 commit 1b9abf6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ module containerAppProcessor 'br/public:avm/res/app/container-app:0.18.1' = {
13741374
// Internal ingress required for container-to-container communication
13751375
ingressTargetPort: 8080
13761376
ingressExternal: false
1377-
ingressAllowInsecure: false
1377+
ingressAllowInsecure: true // Allow HTTP without SSL redirect for internal calls
13781378
scaleSettings: {
13791379
maxReplicas: enableScalability ? 3 : 1
13801380
minReplicas: 1

infra/main.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"_generator": {
77
"name": "bicep",
88
"version": "0.36.177.2456",
9-
"templateHash": "8711849552667845282"
9+
"templateHash": "2628360443413130454"
1010
}
1111
},
1212
"parameters": {
@@ -107,7 +107,7 @@
107107
"type": "int",
108108
"defaultValue": 500,
109109
"metadata": {
110-
"description": "Optional. GPT model deployment token capacity. Lower this if initial provisioning fails due to capacity. Defaults to 50K tokens per minute to improve regional success rate."
110+
"description": "Optional. GPT model deployment token capacity. Lower this if initial provisioning fails due to capacity. Defaults to 500K tokens per minute to improve regional success rate."
111111
}
112112
},
113113
"aiEmbeddingModelName": {
@@ -42608,7 +42608,7 @@
4260842608
"value": false
4260942609
},
4261042610
"ingressAllowInsecure": {
42611-
"value": false
42611+
"value": true
4261242612
},
4261342613
"scaleSettings": {
4261442614
"value": {

infra/main_custom.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ module containerAppProcessor 'br/public:avm/res/app/container-app:0.18.1' = {
13381338
// Internal ingress required for container-to-container communication
13391339
ingressTargetPort: 8080
13401340
ingressExternal: false
1341-
ingressAllowInsecure: false
1341+
ingressAllowInsecure: true // Allow HTTP without SSL redirect for internal calls
13421342
scaleSettings: {
13431343
maxReplicas: enableScalability ? 3 : 1
13441344
minReplicas: 1

0 commit comments

Comments
 (0)