An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hi Waghmare, Shyam (Allianz Technology),
If you’re using FCP VNet to access an Azure OpenAI model, the main idea is to keep all traffic private within your Azure Virtual Network using Private Endpoints.
Here’s how the flow works:
Create Azure VNet
Set up a Virtual Network with subnets for your resources.
Configure Private DNS Zone for name resolution of private endpoints.
Enable Private Endpoint for Azure OpenAI
Add a Private Endpoint to your Azure OpenAI resource
This ensures requests stay on Azure’s backbone, not the public internet.
FCP VNet Role
FCP VNet allows full connectivity between subnets.
Your compute resources (VMs, AKS, App Service) can directly call the OpenAI endpoint privately.
Request Flow
App → VNet → Private Endpoint → Azure OpenAI Service.
Flow diagram:
Reference: https://learn.microsoft.com/en-us/azure/private-link/private-link-overview
Hope this helps!