2026.9.9.2

Overview

Name registry
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.9.9.2
Last updated 2026-09-09 12:43:17:+00:00
Created 2026-09-09 12:43:17:+00:00
Digest sha256:5a66012cc7446e64f1100501505bf501d6ccbaae55f493909c36bb4d3911c3c3

Parameters

Name Type Required Description
env string Yes
system string Yes
suffix string Yes
tags object Yes
containerRegistryName string No
format('{0}acr{1}{2}', system, env, suffix)
location string No
resourceGroup().location
sku string No
'Standard'
anonymousPullEnabled bool No
false
adminUserEnabled bool No
false

Outputs

Name Type Description
containerRegistryName string

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

param system string

param suffix string

param tags object


module registry 'br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.9.9.2' = {
    name: 'registry${env}${version}'
    params: {
      env: env
      system: system
      suffix: suffix
      tags: tags
    }
}