Checks/Aws/Test-RdsInstanceBackupEnabled.ps1
|
function Test-RdsInstanceBackupEnabled { <# .SYNOPSIS RDS instance has backup retention period greater than 0 days .DESCRIPTION **RDS DB instances** are evaluated for **automated backups** by confirming the backup retention period is greater than `0` days, indicating point-in-time recovery is configured. .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_instance_backup_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check rds_instance_backup_enabled for reference.', 'N/A', 'rds Resources') } |