turbot/zoom_compliance
Loading controls...

Control: 1.1.6.3 Ensure when a meeting is cancelled is set to enabled (Manual)

Description

Notify host and participants when the meeting is cancelled.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_6_3

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags