Overview
|
|
| Name |
workspaces |
| Tag |
2026.8.25.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.8.25.2 |
| Last updated |
2026-08-25 09:45:05:+00:00 |
| Created |
2026-08-25 09:45:05:+00:00 |
| Digest |
sha256:46a8b0206b1e29ac94d6ea3a678eacbb0a18b1b558c18703429090dc22211ab7 |
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.25.2' = {
name: 'workspaces${env}${version}'
params: {
env: env
system: system
tags: tags
}
}