Skip to content

Commit

Permalink
fix app insights connection (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiebreviu authored Oct 25, 2024
1 parent 0c37300 commit 1a8b83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/core/monitor/applicationinsights.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module applicationInsightsDashboard 'applicationinsights-dashboard.bicep' = if (
}
}

output connectionString string = replace(applicationInsights.properties.ConnectionString,applicationInsights.properties.InstrumentationKey,'00000000-0000-0000-0000-000000000000')
output connectionString string = replace(applicationInsights.properties.ConnectionString,'00000000-0000-0000-0000-000000000000',applicationInsights.properties.InstrumentationKey)
output id string = applicationInsights.id
output instrumentationKey string = applicationInsights.properties.InstrumentationKey
output name string = applicationInsights.name

0 comments on commit 1a8b83f

Please sign in to comment.