'There is a way to set up Synapse Administrators with a BICEP module?

I would like to set Synapse access control with a bicep module but I can't find a proper resource to use.

Please, can someone point me in the right direction?

enter image description here

UPDATE: basend on evgeny answer, I tryed in this way but it seems not working:

resource syRBAC1 'Microsoft.Synapse/workspaces/administrators@2021-06-01' = {
  name: 'activeDirectory'
  parent: synapse_workspace
  properties: {
    administratorType: 'Synapse SQL Administrator'
    login: '[email protected]'
    sid: ELSCId
    tenantId: TenantId
  }
}

It does not produce any error but it does not change any change into the access control list.

Probably it sets only this: enter image description here



Solution 1:[1]

This is done using Microsoft.Synapse/workspaces/administrators and deployed as a child resource (also to a resource group scope).

https://docs.microsoft.com/en-us/azure/templates/microsoft.synapse/workspaces/administrators?tabs=bicep

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 evgeny