turbot/zoom_compliance

Control: 1.2.3.1 Ensure add a timestamp to the recording is set to enabled (Manual)

Description

Add a timestamp to the recording by enabling this option.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_2_3_1

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run zoom_compliance.control.cis_v100_1_2_3_1 --share

Steampipe Tables

SQL

select
account_id as resource,
case
when (recording -> 'show_timestamp')::bool then 'ok'
else 'alarm'
end as status,
'Add a timestamp to the recording is ' || case when (recording -> 'show_timestamp')::bool then 'enabled' else 'disabled' end || '.' as reason
from
zoom_account_settings

Tags