turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.2.4 Ensure join before host is set to disabled (Automated)

Description

Allow participants to join the meeting before the host arrives should be set to disabled and locked off.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_2_4

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'join_before_host') :: bool then 'alarm'
else 'ok'
end as status,
'Join Before Host is ' || case
when (schedule_meeting -> 'join_before_host') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings
union
select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'join_before_host') :: bool then 'ok'
else 'alarm'
end as status,
'Join Before Host setting is' || case
when not (schedule_meeting -> 'join_before_host') :: bool then ' not'
else ''
end || ' locked.' as reason
from
zoom_account_lock_settings

Tags