In the application we are using Azure SQL Server to Store Enterprise data, we have 2 databases let’s say DB1 and DB2, as per requirement we have to copy some data from DB1 to DB2 using Azure Data factory. This ADF we have configure in such a way that it gets the DATA from DB1 from View and storing it in DB2 Table. Now as the ADF is PAAS service it don’t have any static IP, so every time it runs it fails saying not able to connect to SQL Server, then based on that Error message we get IP Address of ADF and allow that in SQL Server firewall and it execute correctly. Later in next schedule it fails again because the ADF IP we allowed in SQL Server firewall settings is changed, then we need to allow all big range of IPs to make the ADF run correctly.
As this is enterprise client we can not allow a big range of IP in SQL Server Firewall else it will be a big security hole.
Any workaround to set the static IP of ADF and only allow one IP in SQL Server is needed.
