Checks/Aws/Test-RdsInstanceStorageEncrypted.ps1
|
function Test-RdsInstanceStorageEncrypted { <# .SYNOPSIS RDS DB instance storage is encrypted at rest .DESCRIPTION **RDS DB instances** are assessed for **KMS-based encryption at rest** (`StorageEncrypted=true`), covering instance storage and derived artifacts such as snapshots, automated backups, and read replicas. .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_storage_encrypted [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check rds_instance_storage_encrypted for reference.', 'N/A', 'rds Resources') } |