turbot/zoom_compliance
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:

powerpipe control run zoom_compliance.control.cis_v100_1_1_6_1_1

Snapshot and share results via Turbot Pipes:

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

Steampipe 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