Checks/Aws/Test-RdsClusterCriticalEventSubscription.ps1
|
function Test-RdsClusterCriticalEventSubscription { <# .SYNOPSIS RDS cluster event subscription is enabled for maintenance and failure categories .DESCRIPTION **RDS event subscriptions** for the `db-cluster` source type are enabled and cover critical cluster event categories: **`maintenance`** and **`failure`** (or all cluster events). .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: rds_cluster_critical_event_subscription [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check rds_cluster_critical_event_subscription for reference.', 'N/A', 'rds Resources') } |