Skip to content

Commit

Permalink
bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft committed Mar 18, 2024
1 parent 5f347ad commit 54743b7
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
targetScope = 'resourceGroup'

@description('')
param location string = resourceGroup().location


resource userAssignedIdentity_aEVqJOqFO 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: toLower(take(concat('useridentity', uniqueString(resourceGroup().id)), 24))
location: location
properties: {
}
}

0 comments on commit 54743b7

Please sign in to comment.