title | description | author | ms.author | ms.service | ms.topic | ms.date |
---|---|---|---|---|---|---|
SSL/TLS connectivity - Azure Database for MariaDB |
Information for configuring Azure Database for MariaDB and associated applications to properly use SSL connections |
ajlam |
andrela |
mariadb |
conceptual |
06/02/2020 |
Azure Database for MariaDB supports connecting your database server to client applications using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against "man in the middle" attacks by encrypting the data stream between the server and your application.
By default, the database service should be configured to require SSL connections when connecting to MariaDB. We recommend to avoid disabling the SSL option whenever possible.
When provisioning a new Azure Database for MariaDB server through the Azure portal and CLI, enforcement of SSL connections is enabled by default.
Connection strings for various programming languages are shown in the Azure portal. Those connection strings include the required SSL parameters to connect to your database. In the Azure portal, select your server. Under the Settings heading, select the Connection strings. The SSL parameter varies based on the connector, for example "ssl=true" or "sslmode=require" or "sslmode=required" and other variations.
To learn how to enable or disable SSL connection when developing application, refer to How to configure SSL.
Azure Database for MariaDB supports encryption for clients connecting to your database server using Transport Layer Security (TLS). TLS is an industry standard protocol that ensures secure network connections between your database server and client applications, allowing you to adhere to compliance requirements.
Azure Database for MariaDB provides the ability to enforce the TLS version for the client connections. To enforce the TLS version, use the Minimum TLS version option setting. The following values are allowed for this option setting:
Minimum TLS setting | Client TLS version supported |
---|---|
TLSEnforcementDisabled (default) | No TLS required |
TLS1_0 | TLS 1.0, TLS 1.1, TLS 1.2 and higher |
TLS1_1 | TLS 1.1, TLS 1.2 and higher |
TLS1_2 | TLS version 1.2 and higher |
For example, setting the value of Minimum TLS setting version to TLS 1.0 means your server will allow connections from clients using TLS 1.0, 1.1, and 1.2+. Alternatively, setting this to 1.2 means that you only allow connections from clients using TLS 1.2+ and all connections with TLS 1.0 and TLS 1.1 will be rejected.
Note
Azure Database for MariaDB defaults to TLS being disabled for all new servers.
Currently the TLS versions supported by Azure Database for MariaDB are TLS 1.0, 1.1, and 1.2. Once enforced to a specific Minimum TLS version, you cannot change it to disabled.
To learn how to set the TLS setting for your Azure Database for MariaDB, refer to How to configure TLS setting.
- Learn more about server firewall rules
- Learn how to configure SSL
- Learn how to configure TLS