Loading controls...
Control: 1.1.2.10 Ensure always display "Zoom Meeting" as the meeting topic is set to enabled (Manual)
Description
Hide actual meeting topic and display "Zoom Meeting" for your scheduled meetings. Helps confidentiality of meeting topic public display.
Usage
Run the control in your terminal:
steampipe check zoom_compliance.control.cis_v100_1_1_2_10
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share zoom_compliance.control.cis_v100_1_1_2_10
Plugins & Tables
SQL
select -- Required Columns account_id as resource, case when (schedule_meeting -> 'not_store_meeting_topic') :: bool then 'ok' else 'alarm' end as status, 'Always display "Zoom Meeting" as the meeting topic is ' || case when (schedule_meeting -> 'not_store_meeting_topic') :: bool then 'enabled' else 'disabled' end || '.' as reasonfrom zoom_account_settingsunionselect -- Required Columns account_id as resource, case when (schedule_meeting -> 'not_store_meeting_topic') :: bool then 'ok' else 'alarm' end as status, 'Always display "Zoom Meeting" as the meeting topic setting is' || case when not (schedule_meeting -> 'not_store_meeting_topic') :: bool then ' not' else '' end || ' locked.' as reasonfrom zoom_account_lock_settings