Hi @Rafael Miranda that's correct -Azure Web PubSub doesn’t natively support a single static outbound IP address like some other Azure services. However, you can achieve a similar effect by using a shared private endpoint. This allows you to route outbound traffic through a private link, ensuring that the traffic appears to come from a consistent IP address.
Here’s a high-level overview of how you can set this up:
- In your Azure Web PubSub service, create a shared private endpoint that connects to your target resource (e.g., an Azure Function or Azure Web App).
- Ensure that the target resource approves the private endpoint connection.
- Set up the necessary network rules to allow traffic through this private endpoint.
This setup ensures that all outbound traffic from your Azure Web PubSub service to the specified resource will use the private endpoint, giving you a consistent outbound IP address.
Best,
Grace