top of page
Writer's pictureALIF Consulting

Best practices for securing PaaS databases in Azure

Updated: Aug 1

This article discusses a collection of Azure SQL Database and Azure Synapse Analytics security best practices for securing your platform-as-a-service (PaaS) web and mobile applications. These best practices are derived from our experience with Azure and the experiences of customers like yourself.

Azure SQL Database and Azure Synapse Analytics provide a relational database service for your internet-based applications. Let’s look at services that help protect your applications and data when using Azure SQL Database and Azure Synapse Analytics in a PaaS deployment:


Use a centralized identity repository

Azure SQL Database can be configured to use one of two types of authentication:

  • SQL authentication uses a username and password. When you created the server for your database, you specified a "server admin" login with a username and password. Using these credentials, you can authenticate as the database owner to any database on that server.

  • Azure Active Directory authentication uses identities managed by Azure Active Directory and is supported for managed and integrated domains. To use Azure Active Directory Authentication, you must create another server admin called the "Azure AD admin," who is allowed to administer Azure AD users and groups and can also perform all operations that a regular server admin can.

Azure Active Directory authentication is a mechanism for connecting to Azure SQL Database and Azure Synapse Analytics using identities in Azure Active Directory (AD). It provides an alternative to SQL Server authentication so you can stop the proliferation of user identities across database servers. Azure AD authentication enables you to centrally manage the identities of database users and other Microsoft services in one central location. Central ID management provides a single place to manage database users and simplifies permission management.


Azure AD Authentication with SQL V12DB

Benefits of using Azure AD instead of SQL authentication

Allows password rotation in a single place.

  • Manages database permissions using external Azure AD groups.

  • Eliminates storing passwords by enabling integrated Windows authentication and other forms of authentication supported by Azure AD.

  • Uses contained database users to authenticate identities at the database level.

  • Supports token-based authentication for applications connecting to SQL Database.

  • Supports domain federation with Active Directory Federation Services (ADFS) or native user/password authentication for a local Azure AD without domain synchronization.

  • Supports connections from SQL Server Management Studio that use Active Directory Universal Authentication, which includes Multi-Factor Authentication (MFA). MFA includes strong authentication with a range of easy verification options — phone calls, text messages, smart cards with pins, or mobile app notifications.


Restrict access based on IP address

You can create firewall rules that specify ranges of acceptable IP addresses. These rules can be targeted at both the server and database levels. We recommend using database-level firewall rules whenever possible to enhance security and make your database more portable. Server-level firewall rules are best used for administrators when you have many databases with the same access requirements but don't want to spend time configuring each database individually.

SQL Database default source IP address restrictions allow access from any Azure address, including other subscriptions and tenants. You can restrict this to only allow your IP addresses to access the instance. Strong authentication is still needed, even with your SQL firewall and IP address restrictions.


Azure AD

Encrypt data at rest

Transparent Data Encryption (TDE) is enabled by default. TDE transparently encrypts SQL Server, Azure SQL Database, and Azure Synapse Analytics data and log files. TDE protects against a compromise of direct access to the files or their backup. This enables you to encrypt data at rest without changing existing applications. TDE should always stay enabled; however, this will not stop an attacker using the normal access path. TDE provides the ability to comply with many laws, regulations, and guidelines established in various industries.

Azure SQL manages key-related issues for TDE. As with TDE, on-premises special care must be taken to ensure recoverability when moving databases. In more sophisticated scenarios, the keys can be explicitly managed in Azure Key Vault through extensible key management. This also allows for Bring Your Own Key (BYOK) through Azure Key Vaults' BYOK capability.

Azure SQL provides encryption for columns through Always Encrypted. This allows only authorized applications access to sensitive columns. This kind of encryption limits SQL queries for encrypted columns to equality-based values.

Application-level encryption should also be used to select data. Data sovereignty concerns can sometimes be mitigated by encrypting data with a key in the correct country/region. This prevents even accidental data transfer from causing an issue since decrypting the data without the key is impossible, assuming a strong algorithm is used (such as AES 256).

You can use additional precautions to help secure the database, such as designing a secure system, encrypting confidential assets, and building a firewall around the database servers.


Azure SQL Database

75 views0 comments

Comments


bottom of page