turbot/zoom_compliance
Loading controls...

Control: 1.1.4.3.1 Ensure virtual background is set to enabled (Manual)

Description

Customize your background to keep your environment private from others in a meeting. This can be used with or without a green screen.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_3_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'virtual_background') :: bool then 'ok'
else 'alarm'
end as status,
'Virtual background is ' || case
when (in_meeting -> 'virtual_background') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags