Checks/Aws/Test-DmsEndpointRedisInTransitEncryptionEnabled.ps1
|
function Test-DmsEndpointRedisInTransitEncryptionEnabled { <# .SYNOPSIS DMS endpoint for Redis OSS is encrypted in transit .DESCRIPTION **DMS Redis OSS endpoints** are assessed for the presence of **TLS** in their endpoint settings, such as `ssl-encryption`, indicating encrypted connections between the DMS replication instance and Redis. .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: dms_endpoint_redis_in_transit_encryption_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check dms_endpoint_redis_in_transit_encryption_enabled for reference.', 'N/A', 'dms Resources') } |