Checks/Aws/Test-ElasticacheRedisReplicationGroupAuthEnabled.ps1
|
function Test-ElasticacheRedisReplicationGroupAuthEnabled { <# .SYNOPSIS ElastiCache Redis replication group with engine version < 6.0 has Redis OSS AUTH enabled .DESCRIPTION Amazon ElastiCache Redis replication groups running versions prior to `6.0` are evaluated for the use of **AUTH tokens**. For `6.0+`, the finding indicates **ACL/RBAC** configuration should be reviewed instead of token-based AUTH. .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: elasticache_redis_replication_group_auth_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check elasticache_redis_replication_group_auth_enabled for reference.', 'N/A', 'elasticache Resources') } |