2026.8.31.6

Overview

Name managedidentity
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/managedidentity:2026.8.31.6
Last updated 2026-08-31 10:51:46:+00:00
Created 2026-08-31 10:51:46:+00:00
Digest sha256:7502311f1a370b40e072c4e62ac7c7e2fcb69b68e61445adb3ba4c10ea058bf5

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