Overview
|
|
| Name |
workspaces |
| Tag |
2026.8.31.6 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.8.31.6 |
| Last updated |
2026-08-31 10:49:46:+00:00 |
| Created |
2026-08-31 10:49:46:+00:00 |
| Digest |
sha256:d7f9f0f67121009057e8c5d85a4af492c78d76b310bcac440c747990ea3d354f |
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.31.6' = {
name: 'workspaces${env}${version}'
params: {
env: env
system: system
tags: tags
}
}