We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c6ebb commit 240c4eeCopy full SHA for 240c4ee
infra/core/host/appservice.bicep
@@ -102,7 +102,7 @@ resource appService 'Microsoft.Web/sites@2022-03-01' = {
102
{
103
SCM_DO_BUILD_DURING_DEPLOYMENT: string(scmDoBuildDuringDeployment)
104
ENABLE_ORYX_BUILD: string(enableOryxBuild)
105
- ApplicationInsightsAgent_EXTENSION_VERSION: '~2'
+ ApplicationInsightsAgent_EXTENSION_VERSION: contains(kind, 'linux') ? '~3' : '~2'
106
},
107
runtimeName == 'python' ? { PYTHON_ENABLE_GUNICORN_MULTIWORKERS: 'true' } : {},
108
!empty(applicationInsightsName) ? { APPLICATIONINSIGHTS_CONNECTION_STRING: applicationInsights.properties.ConnectionString } : {},
0 commit comments