Overview
|
|
| Name |
managedidentity |
| Tag |
2026.8.25.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/managedidentity:2026.8.25.2 |
| Last updated |
2026-08-25 09:47:03:+00:00 |
| Created |
2026-08-25 09:47:03:+00:00 |
| Digest |
sha256:009979ac0053519134fa52683f06e5c940482c382df190a83faf3ff942c5c972 |
Parameters
| Name |
Type |
Required |
Description |
name |
string |
Yes |
Managedment identity name |
location |
string |
Yes |
|
tags |
object |
Yes |
Tags to add to the resources |
Outputs
| Name |
Type |
Description |
managedIdentityResourceId |
string |
|
managedIdentityPrincipalId |
string |
|
managedIdentityClientId |
string |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('Managedment identity name')
param name string
param location string
@description('Tags to add to the resources')
param tags object
module managedidentity 'br:bicepacrdevwcom.azurecr.io/bicep/modules/managedidentity:2026.8.25.2' = {
name: 'managedidentity${env}${version}'
params: {
name: name
location: location
tags: tags
}
}