Overview
|
|
| Name |
workspaces |
| Tag |
2026.8.26.3 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.8.26.3 |
| Last updated |
2026-08-26 07:44:12:+00:00 |
| Created |
2026-08-26 07:44:12:+00:00 |
| Digest |
sha256:6878f97ede4c43d73eaf9301ad1427893815a555c03220fa6b5e49cedf5a594b |
Parameters
| Name |
Type |
Required |
Description |
env |
string |
Yes |
|
system |
string |
Yes |
|
suffix |
string |
No
'' |
|
tags |
object |
Yes |
|
appInsightsName |
string |
No
format('{0}-log-{1}{2}{3}{4}', system, env, suffix, if(empty(suffix), '', '-'), suffix) |
|
location |
string |
No
resourceGroup().location |
|
dailyQuotaGb |
string |
No
'0.023' |
|
retentionInDays |
int |
No
90 |
|
sku |
object |
No
{ name: 'PerGB2018' } |
|
Outputs
| Name |
Type |
Description |
workspaceId |
string |
|
logAnalyticsWorkspaceName |
string |
|
primaryShareKey |
string |
|
customerId |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param system string
param tags object
module workspaces 'br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.8.26.3' = {
name: 'workspaces${env}${version}'
params: {
env: env
system: system
tags: tags
}
}