turbot/zoom_compliance
Loading controls...

Control: 1.2.12 Ensure allow recovery of deleted cloud recordings from trash is set to enabled (Manual)

Description

Deleted cloud recordings will be kept in trash for 30 days. These files will not count as part of the total storage allowance. Useful when downloaded recordings are accidentally deleted.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_2_12

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
recording -> 'allow_recovery_deleted_cloud_recordings'
) :: bool then 'ok'
else 'alarm'
end as status,
'Host can delete cloud recordings is ' || case
when (
recording -> 'allow_recovery_deleted_cloud_recordings'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags