Overview
|
|
| Name |
applicationinsights |
| Tag |
2026.8.26.3 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/applicationinsights:2026.8.26.3 |
| Last updated |
2026-08-26 07:44:10:+00:00 |
| Created |
2026-08-26 07:44:10:+00:00 |
| Digest |
sha256:e2dd817969861dd38e465e35ed27e1e07c49805b4ff1595fd6ebe150df4ca057 |
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.26.3' = {
name: 'applicationinsights${env}${version}'
params: {
env: env
suffix: suffix
tags: tags
workspaceId: workspaceId
}
}