Forum Discussion
What secure protocol does Power BI use for Azure SQL Server?
According to the documentation "Sql Server enforces encryption (TLS) at all times for all connections. This ensures all data is encrypted "in transit" between the client and server irrespective of the setting of Encrypt or TrustServerCertificate in the connection string."
Does that mean, all the traffic is encrypted even if I disable "Enrypt connection" in the Data source settings in PBI Desktop?
Thx in advance
C_H wrote:
Does that mean, all the traffic is encrypted even if I disable "Enrypt connection" in the Data source settings in PBI Desktop?
For Azure SQL - yes. For on-prem SQL it depends.
There is a server side setting called something like ForceEncryption this is always set to true on Azure, but for on-prem SQL instances it can be set by the DBA. If this setting is true it does not matter what option the client chooses. If it's false the client can ask for an unencrypted connection (ideally you'd probably only ever do this if you had old legacy client applications)