turbot/zoom_compliance

GitHub
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:

steampipe check zoom_compliance.control.cis_v100_1_1_6_5

Snapshot and share results via Steampipe Cloud:

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

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