Hi, I have completed the Academy course on using Azure DevOps to build a CI/CD deployment pipeline for UiPath processes. I would like to know how the pipeline handles Integration Services connections and Data Fabric entities, since both appear to be tenant-specific.
Example:
- In my DEV tenant:
- I have an Outlook 365 integration connection called Robot DEV email, connected to the company’s automation dev email address, e.g.
automation.dev@company.com. - I have a Data Fabric entity called InvoiceData that my process uses during development.
- I have an Outlook 365 integration connection called Robot DEV email, connected to the company’s automation dev email address, e.g.
- In my UAT tenant:
- I have a different Outlook 365 integration connection called Robot UAT Email, connected to
automation.uat@company.com. - I have a Data Fabric entity also named InvoiceData.
- I have a different Outlook 365 integration connection called Robot UAT Email, connected to
What I have noticed when doing manual deployments the Integration Connection and Data Fabric entity break when moving the same code package from the DEV to UAT tenant. I have to login to the UAT tenant in UiPath Assistant and open the code package in UiPath Studio.
Then for all Outlook 365 activities I have to fix the connection and select Robot UAT email from the dropdown, see below:
Similarly, in Studio I have to to click on Manage Entities → Save button to make sure the code is compatible with the UAT tenant, otherwise it does not run successfully during runtime.
My question is: how will Azure DevOps pipeline handle these two artifacts as it will not be able to update them when moving to a new tenant?
In many enterprise CI/CD environments, developers cannot access UAT or Production to manually remap connections or refresh entities after deployment. How are these tenant-specific dependencies intended to be managed in an automated Azure DevOps pipeline?
Thank you!

