SoftwareFactor
SoftwareFactor

Reputation: 8588

SQL Azure IP configuration

Is it possible to configure SQL Azure DB to only accept connections from my Azure virtual private network? I would like to give access to it for all VMs in this private network as well as users connecting via Point-to-Site VPN client.

Upvotes: 0

Views: 2457

Answers (2)

David Makogon
David Makogon

Reputation: 71031

SQL Database is not part of your VNET (it's a separate service, so the individual IP addresses cannot be added to the firewall. While you can simply enable internal Azure endpoints to connect to your SQL Database connection, this would allow for any deployment within Azure to connect to your database.

If you have services running in one or more cloud services, you can open your database firewall for each individual service's VIP.

Upvotes: 2

Brendan Green
Brendan Green

Reputation: 11904

Everything you wanted to know about SQL Azure firewalls: Azure SQL Database Firewall

Upvotes: 0

Related Questions