To sync with a Microsoft Entra ID tenant, you need to authorize Barracuda CloudGen Access to access your data:
- In the app, go to the Settings page and scroll down to User Directories.
- Click + to add the user directory you want to sync. Fill in the required fields and click Add.
- In the Add external user directory popup, click Authorize. Verify authentication to the Microsoft Entra ID portal is successful.
- Copy and paste the enrollment token into the
docker run
command below in place of 'your enrollment token'. - Verify that you see all Microsoft Entra ID directory users and groups on the Identity > Users, Identity > Groups pages after successful sync.
This guide uses the Docker tool as an example.
docker run --name myazuresync -it fydeinc/fyde-connector --enrollment-token='your enrollment token' sync
2023-02-03 18:28:33 - Configuring system with local DB
2023-02-03 18:28:33 - CGA Connector version 1.0.0
2023-02-03 18:28:33 - Initializing with API https://api.mydomain.com/connectors/v1/184
2023-02-03 18:28:34 - Filters have changed, forcing a full sync
2023-02-03 18:28:54 - Successful sync, next run in 900 seconds
2023-02-03 18:44:01 - No changes detected
2023-02-03 18:44:01 - Successful sync, next run in 900 seconds
This is a “foreground” command. If you want to use docker to run it without stopping, you need to run the command and sent it to the background. You can also add a parameter to start the service again after the reboot.
docker run -d --restart always fydeinc/fyde-connector --enrollment-token='https://enterprise.fyde......' --azure-auth-token='eAJ4q2wcbi......'
Microsoft Entra ID Parameters
Key | Default | Type | Description |
---|---|---|---|
azure-api-timeout | 60 | int | Timeout to connect to Microsoft Azure infrastructure. |
azure-auth-token | string | This auth token is required for syncing with an Microsoft Entra ID tenant. It is created through the Docker tool. See instructions above on how to create an enrollment token. |
See also General parameters.