turbot/steampipe-mod-azure-compliance

Control: PostgreSQL servers should have the latest TLS version

Description

This control checks if the PostgreSQL server is upgraded to the latest TLS version.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.postgres_db_server_latest_tls_version

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
s.id as resource,
case
when minimal_tls_version = 'TLS1_2' then 'ok'
else 'alarm'
end as status,
case
when minimal_tls_version = 'TLS1_2' then name || ' uses the latest version of TLS encryption.'
else name || ' does not use the latest version of TLS encryption.'
end as reason
, s.resource_group as resource_group
, sub.display_name as subscription
from
azure_postgresql_server as s,
azure_subscription as sub
where
sub.subscription_id = s.subscription_id;

Tags