Hi HimanshuSinha,
Yes, Azure Data Factory can be deployed using ARM templates, and this is actually the standard and recommended way to deploy ADF in enterprise environments.
When you publish from ADF Studio, Azure automatically generates ARM templates for the factory, including pipelines, datasets, linked services, triggers, and integration runtimes. These templates can then be deployed using the Azure Portal, Azure DevOps, GitHub Actions, Azure CLI, or PowerShell, making it ideal for CI/CD and multi-environment deployments.
A few practical points:
Environment-specific values should be parameterized
Triggers are usually disabled during deployment and enabled afterward
Self-hosted IRs require separate setup on the target machines
In short, ARM-based deployment is fully supported and widely used for ADF, especially for Dev/Test/Prod workflows.
Hope this helps.