Checks/Aws/Test-DynamodbAcceleratorClusterMultiAz.ps1
|
function Test-DynamodbAcceleratorClusterMultiAz { <# .SYNOPSIS DynamoDB Accelerator (DAX) cluster has nodes in multiple Availability Zones .DESCRIPTION **Amazon DynamoDB Accelerator (DAX)** cluster node placement across **Availability Zones** is evaluated. Clusters with nodes in more than one AZ within the Region are recognized as multi-AZ; clusters whose nodes reside in a single AZ are recognized as single-AZ. .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: dynamodb_accelerator_cluster_multi_az [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check dynamodb_accelerator_cluster_multi_az for reference.', 'N/A', 'dynamodb Resources') } |