File tree Expand file tree Collapse file tree
quickstart-templates/security-group-assign-azure-role Expand file tree Collapse file tree Original file line number Diff line number Diff 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
2121resource 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' )
You can’t perform that action at this time.
0 commit comments