Control: 1.1.3.11 Ensure co-host is set to enabled (Manual)
Description
Allow the host to add co-hosts. Co-hosts have the same in-meeting controls as the host.
Usage
Run the control in your terminal:
powerpipe control run zoom_compliance.control.cis_v100_1_1_3_11Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_3_11 --shareSteampipe Tables
SQL
select  -- Required Columns  account_id as resource,  case    when (in_meeting -> 'co_host')::bool then 'ok'    else 'alarm'  end as status,  'Add co-hosts is ' || case when (in_meeting -> 'co_host')::bool then 'enabled' else 'disabled' end || '.' as reasonfrom  zoom_account_settings