turbot/zoom_compliance

Control: 1.1.2.8 Ensure add watermark is set to enabled (Manual)

Description

Adding watermark enables author accreditation. Each attendee sees a portion of their own email address embedded as a watermark in any shared content and on the video of the participant who is sharing their screen. This option requires enabling "Only signed-in users can join the meeting" or "Only signed-in users with specified domains can join meetings".

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_2_8

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run zoom_compliance.control.cis_v100_1_1_2_8 --share

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'watermark')::bool then 'ok'
else 'alarm'
end as status,
'Ensure add watermark is ' || case when (in_meeting -> 'watermark')::bool then 'enabled' else 'disabled' end || '.' as reason
from
zoom_account_settings
union
select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'watermark')::bool then 'ok'
else 'alarm'
end as status,
'Ensure add watermark setting is' || case when not (in_meeting -> 'watermark')::bool then ' not' else '' end || ' locked.' as reason
from
zoom_account_lock_settings

Tags