Checks/Aws/Test-CloudtrailMultiRegionEnabledLoggingManagementEvents.ps1
|
function Test-CloudtrailMultiRegionEnabledLoggingManagementEvents { <# .SYNOPSIS CloudTrail trail logs management events for read and write operations .DESCRIPTION **CloudTrail trails** record **management events** (`read` and `write`) in every AWS region and are actively logging, using a multi-region trail or per-region coverage. .PARAMETER Check CIEMCheck object containing check metadata. #> [CmdletBinding()] [OutputType([PSCustomObject[]])] param( [Parameter(Mandatory)] [CIEMCheck]$Check ) $ErrorActionPreference = 'Stop' # TODO: Implement check logic based on Prowler check: cloudtrail_multi_region_enabled_logging_management_events [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check cloudtrail_multi_region_enabled_logging_management_events for reference.', 'N/A', 'cloudtrail Resources') } |