Checks/Aws/Test-MqBrokerClusterDeploymentMode.ps1
|
function Test-MqBrokerClusterDeploymentMode { <# .SYNOPSIS MQ RabbitMQ broker has cluster (multi-AZ) deployment mode .DESCRIPTION **Amazon MQ RabbitMQ brokers** are assessed for **cluster deployment mode** (`CLUSTER_MULTI_AZ`) with nodes spread across multiple AZs and shared state. Brokers configured otherwise are identified. .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: mq_broker_cluster_deployment_mode [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check mq_broker_cluster_deployment_mode for reference.', 'N/A', 'mq Resources') } |