Overview
|
|
| Name |
applicationinsights |
| Tag |
2026.8.31.6 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/applicationinsights:2026.8.31.6 |
| Last updated |
2026-08-31 10:49:43:+00:00 |
| Created |
2026-08-31 10:49:43:+00:00 |
| Digest |
sha256:78dd0dfb139f6c3de999ec05e902225eb5af10a4935e0f5bb7be29ffde1727f8 |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
|
system |
string |
No
'' |
|
suffix |
string |
Yes |
|
tags |
object |
Yes |
|
appInsightsName |
string |
No
format('{0}-ai-{1}{2}{3}{4}', system, env, suffix, if(empty(suffix), '', '-'), suffix) |
|
location |
string |
No
resourceGroup().location |
|
kind |
string |
No
'web' |
|
applicationType |
string |
No
'web' |
|
workspaceId |
string |
Yes |
|
Outputs
| Name |
Type |
Description |
appInsightId |
string |
|
appInsightsConnectionString |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param suffix string
param tags object
param workspaceId string
module applicationinsights 'br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/applicationinsights:2026.8.31.6' = {
name: 'applicationinsights${env}${version}'
params: {
env: env
suffix: suffix
tags: tags
workspaceId: workspaceId
}
}