Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure SQL Server security

When you're creating an SQL server on Azure, there is the option to

"ALLOW WINDOWS AZURE SERVICES TO ACCESS THE SERVER."

Does this mean that some other application (other than my own applications) hosted on Azure, like a website, can access my sql server?

There is username password, of course, but I'm afraid they can be brute forced.

Is this a legitimate concern?

like image 873
Emre Kenci Avatar asked Mar 07 '15 12:03

Emre Kenci


People also ask

Is Azure SQL database secure?

Databases in SQL Database are protected by firewalls in Azure. By default, all connections to the server and database are rejected. To learn more, see server-level and database-level firewall rules. Set Allow access to Azure services to OFF for the most secure configuration.

Is Azure SQL encrypted at rest?

Azure SQL Database currently supports encryption at rest for Microsoft-managed service side and client-side encryption scenarios. Support for server encryption is currently provided through the SQL feature called Transparent Data Encryption.

Is Microsoft SQL Server secure?

Microsoft SQL Server provides several built in features that enable security, including encrypted communication over SSL/TLS, the Windows Data Protection API (DPAPI) used to encrypt data at rest, authentication and authorization.


1 Answers

Yes, "Allow access to Azure services" is a shortcut that allows any Azure-hosted service through the firewall (though the other service still needs to know the server name and a SQL Authentication username/password, as you mention). This shortcut is for convenience, since your app's IP address can change if the VMs in your cloud service fail over or shut down.

To avoid using this shortcut, you could create a reserved virtual IP address (VIP) for your cloud service. This allows your app to have a persistent public IP address, which you can specifically and selectively allow through the server firewall for your SQL Database.

like image 89
tmullaney Avatar answered Sep 24 '22 13:09

tmullaney