Checks/Aws/Test-RedshiftClusterAutomatedSnapshot.ps1
|
function Test-RedshiftClusterAutomatedSnapshot { <# .SYNOPSIS Redshift cluster has automated snapshots enabled .DESCRIPTION **Amazon Redshift clusters** are evaluated for **automated snapshots** being enabled with a retention period `> 0`, confirming that periodic backups are created and retained. .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: redshift_cluster_automated_snapshot [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check redshift_cluster_automated_snapshot for reference.', 'N/A', 'redshift Resources') } |