Checks/Aws/Test-CloudwatchChangesToNetworkRouteTablesAlarmConfigured.ps1
|
function Test-CloudwatchChangesToNetworkRouteTablesAlarmConfigured { <# .SYNOPSIS Account monitors VPC route table changes with a CloudWatch Logs metric filter and alarm .DESCRIPTION **VPC route table changes** are captured from **CloudTrail logs** by a **CloudWatch Logs metric filter** with an associated **alarm** for events like `CreateRoute`, `CreateRouteTable`, `ReplaceRoute`, `ReplaceRouteTableAssociation`, `DeleteRoute`, `DeleteRouteTable`, and `DisassociateRouteTable`. .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: cloudwatch_changes_to_network_route_tables_alarm_configured [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check cloudwatch_changes_to_network_route_tables_alarm_configured for reference.', 'N/A', 'cloudwatch Resources') } |