turbot/azure_compliance

Query: postgres_flexible_server_log_checkpoints_on

Usage

powerpipe query azure_compliance.query.postgres_flexible_server_log_checkpoints_on

SQL

with log_checkpoints_on as(
select
id
from
azure_postgresql_flexible_server,
jsonb_array_elements(flexible_server_configurations) as config
where
config ->> 'Name' = 'log_checkpoints' and config -> 'ConfigurationProperties' ->> 'value' = 'on'
)
select
s.id as resource,
case
when a.id is not null then 'ok'
else 'alarm'
end as status,
case
when a.id is not null then s.title || ' server parameter log_checkpoints on.'
else s.title || ' server parameter log_checkpoints off.'
end as reason
, s.resource_group as resource_group
, sub.display_name as subscription
from
azure_postgresql_flexible_server as s
left join log_checkpoints_on as a on s.id = a.id,
azure_subscription as sub
where
sub.subscription_id = s.subscription_id;

Controls

The query is being used by the following controls: