turbot/zoom_compliance
Loading controls...

Control: 1.1.6.5 Enable when someone scheduled a meeting for a host is set to enabled (Manual)

Description

When someone scheduled a meeting for a host, Notify the host there is a meeting is scheduled, rescheduled, or cancelled. Helpful in monitoring the schedule by someone who has permissions to schedule a meeting on behalf of host.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_6_5

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags