Overview
|
|
| Name |
registry |
| Tag |
2026.8.26.3 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.8.26.3 |
| Last updated |
2026-08-26 07:40:19:+00:00 |
| Created |
2026-08-26 07:40:19:+00:00 |
| Digest |
sha256:d09543904108eeaa260e3087097eac060c984c4c7dde0827f323d7b815d316db |
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.26.3' = {
name: 'registry${env}${version}'
params: {
env: env
system: system
suffix: suffix
tags: tags
}
}