Skip to content

Commit f6e2588

Browse files
fix: standardize comments and remove telemetry parameter from deployment configuration
1 parent 1b9abf6 commit f6e2588

3 files changed

Lines changed: 2 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: true // Allow HTTP without SSL redirect for internal calls
1377+
ingressAllowInsecure: true // Allow HTTP without SSL redirect for internal calls
13781378
scaleSettings: {
13791379
maxReplicas: enableScalability ? 3 : 1
13801380
minReplicas: 1

infra/main.parameters.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@
4040
},
4141
"imageTag": {
4242
"value": "${AZURE_ENV_IMAGE_TAG}"
43-
},
44-
"enableTelemetry": {
45-
"value": "true"
4643
}
4744
}
4845
}

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: true // Allow HTTP without SSL redirect for internal calls
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)