2026.8.25.4

Overview

Name workspaces
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.8.25.4
Last updated 2026-08-25 10:39:17:+00:00
Created 2026-08-25 10:39:17:+00:00
Digest sha256:fa1ee77c3a5916cd01a6ade2d03531f2e7341ecdd1f602661d6c41a04b4b3637

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.4' = {
    name: 'workspaces${env}${version}'
    params: {
      env: env
      system: system
      tags: tags
    }
}