Control: 1.1.1.9 Ensure only authenticated users can join meetings is set to enabled (Manual)
Description
The participants need to authenticate prior to joining the meetings.
Usage
Run the control in your terminal:
powerpipe control run zoom_compliance.control.cis_v100_1_1_1_9Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_1_9 --shareSteampipe Tables
SQL
select  -- Required Columns  account_id as resource,  case    when (meeting_authentication -> 'enabled')::bool then 'ok'    else 'alarm'  end as status,  'Only authenticated users can join meetings is ' || case when (meeting_authentication -> 'enabled')::bool then 'enabled' else 'disabled' end || '.' as reasonfrom  zoom_account_settings