2026.8.25.4

Overview

Name managedidentity
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/managedidentity:2026.8.25.4
Last updated 2026-08-25 10:41:22:+00:00
Created 2026-08-25 10:41:22:+00:00
Digest sha256:1339f300eee5072868ba3527d325a9d66292f60ff28ac7231c15b40005cc864d

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.4' = {
    name: 'managedidentity${env}${version}'
    params: {
      name: name
      location: location
      tags: tags
    }
}