turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.6.1.1 Ensure when a cloud recording is available is set to enabled (Manual)

Description

Notify host when cloud recording is available. This can enable hosts to validate the recording for any confidential data, prior sharing the video at large.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_6_1_1

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
email_notification -> 'cloud_recording_available_reminder'
) :: bool then 'ok'
else 'alarm'
end as status,
'Cloud recording available notification is ' || case
when (
email_notification -> 'cloud_recording_available_reminder'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags