turbot/steampipe-mod-alicloud-compliance

Control: 6.8 Ensure server parameter 'log_disconnections' is set to 'ON' for PostgreSQL Database Server

Description

Enable log_disconnections on PostgreSQL Servers.

Remediation

From Console

  1. Login to RDS Console.
  2. In the upper-left corner, select the region of the target instance.
  3. Locate the target instance, and click the instance ID to enter the Basic Information page.
  4. In the left-side navigation pane, select Parameters.
  5. Click the Edit icon of log_disconnections parameter next the Actual Value column.
  6. Enter On as the Actual Value and click Confirm.
  7. Click Apply Changes.
  8. In the message that appears, click Confirm.

Usage

Run the control in your terminal:

powerpipe control run alicloud_compliance.control.cis_v100_6_8

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run alicloud_compliance.control.cis_v100_6_8 --share

SQL

This control uses a named query:

select
arn as resource,
case
when engine != 'PostgreSQL' then 'skip'
when parameters -> 'RunningParameters' -> 'DBInstanceParameter' @> '[{"ParameterName": "log_disconnections", "ParameterValue": "on"}]' then 'ok'
else 'alarm'
end as status,
case
when engine != 'PostgreSQL' then title || ' is ' || engine || ' server.'
when parameters -> 'RunningParameters' -> 'DBInstanceParameter' @> '[{"ParameterName": "log_disconnections", "ParameterValue": "on"}]' then title || ' ''log_disconnections'' parameter set to ''on''.'
else title || ' ''log_disconnections'' parameter set to ''off''.'
end as reason
, account_id as account_id, region as region
from
alicloud_rds_instance;

Tags