turbot/steampipe-mod-azure-compliance

Control: Enforce SSL connection should be enabled for MySQL database servers

Description

Azure Database for MySQL supports connecting your Azure Database for MySQL 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. This configuration enforces that SSL is always enabled for accessing your database server.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.mysql_ssl_enabled

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run azure_compliance.control.mysql_ssl_enabled --share

SQL

This control uses a named query:

select
s.id as resource,
case
when ssl_enforcement = 'Disabled' then 'alarm'
else 'ok'
end as status,
case
when ssl_enforcement = 'Disabled' then s.name || ' SSL connection disabled.'
else s.name || ' SSL connection enabled.'
end as reason
, s.resource_group as resource_group
, sub.display_name as subscription
from
azure_mysql_server as s,
azure_subscription as sub
where
sub.subscription_id = s.subscription_id;

Tags