Iām trying to understand the networking implications of moving some logic to Databricks Serverless / SDP.
My current setup is a notebook running as a job on classic compute, and this works because outbound traffic goes through a NAT Gateway, so we can expose a stable public IP that a customer can whitelist for their REST API.
As I understand it, Databricks Serverless compute does not run inside my own VNET/VPC, so I canāt simply control outbound IPs in the same way or attach a NAT Gateway.
In that case, Iām unsure how this kind of integration is supposed to be handled if I move the logic into SDP (for example using a custom PySpark data source Iāve built using serverless as the compute.
The use case is still that I need to call a customerās REST API that requires IP whitelisting.
What is the recommended way to handle this? Thanks!