2026.8.31.6

Overview

Name registry
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.8.31.6
Last updated 2026-08-31 10:46:11:+00:00
Created 2026-08-31 10:46:11:+00:00
Digest sha256:9fc82da8c78e49f457972128426538d9e09e45bcdac453a7d8d9ade502817f18

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