2026.9.9.2

Overview

Name workspaces
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/insights/workspaces:2026.9.9.2
Last updated 2026-09-09 12:47:07:+00:00
Created 2026-09-09 12:47:07:+00:00
Digest sha256:6ac6ec48350120e8cc01c6032b4986b3b1bee72c4cddce58fc4aac8b1ec4f246

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