Overview
|
|
| Name |
registry |
| Tag |
2026.8.25.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/acr/registry:2026.8.25.2 |
| Last updated |
2026-08-25 09:41:31:+00:00 |
| Created |
2026-08-25 09:41:31:+00:00 |
| Digest |
sha256:c223d235ff76ecd42ada3ed011a77685485e8160aff57901d008a0fc25c90815 |
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.2' = {
name: 'registry${env}${version}'
params: {
env: env
system: system
suffix: suffix
tags: tags
}
}