Skip to content

Commit 09f8a57

Browse files
committed
Address review feedback
1 parent a442dc5 commit 09f8a57

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • quickstart-templates/security-group-assign-azure-role

quickstart-templates/security-group-assign-azure-role/main.bicep

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource managedIdentities 'Microsoft.ManagedIdentity/userAssignedIdentities@202
1717
}
1818
]
1919

20-
// Storage resource that the clinet services need access to
20+
// Storage resource that the client services need access to
2121
resource storage 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
2222
name: storageName
2323
}
@@ -29,7 +29,9 @@ resource storageBlobReadersGroup 'Microsoft.Graph/groups@v1.0' = {
2929
mailNickname: uniqueString(groupName)
3030
securityEnabled: true
3131
uniqueName: groupName
32-
members: [for (mi, i) in clientServiceList: managedIdentities[i].properties.principalId]
32+
members: {
33+
relationships: [for (mi, i) in clientServiceList: managedIdentities[i].properties.principalId]
34+
}
3335
}
3436

3537
@description('Specify the storage blob reader role definition ID')

0 commit comments

Comments
 (0)