2026.8.25.4

Overview

Name registry
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.8.25.4
Last updated 2026-08-25 10:35:36:+00:00
Created 2026-08-25 10:35:36:+00:00
Digest sha256:8b4837e28ecb697906c4b065bf31fdeed5519408f4e025c213622c9f22e2a3db

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