turbot/zoom_compliance
Loading controls...

Control: 3.1.1.3.2 Ensure allow importing of photos from the photo library on the user's device is set to disabled (Manual)

Description

Allow importing of photos from the photo library on the user's device.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_3_1_1_3_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (security -> 'import_photos_from_devices') :: bool then 'alarm'
else 'ok'
end as status,
'Import photos from devices is ' || case
when (security -> 'import_photos_from_devices') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags