turbot/zoom_compliance

GitHub
Loading controls...

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:

steampipe check zoom_compliance.control.cis_v100_1_2_3_1

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share zoom_compliance.control.cis_v100_1_2_3_1

Plugins & 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