Checks/Aws/Test-ShieldAdvancedProtectionInClassicLoadBalancers.ps1
|
function Test-ShieldAdvancedProtectionInClassicLoadBalancers { <# .SYNOPSIS Classic Load Balancer is protected by AWS Shield Advanced .DESCRIPTION **Classic Load Balancers** are evaluated for association with **AWS Shield Advanced** as a protected resource. Identifies load balancers without an active Shield Advanced protection when the subscription is enabled. .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: shield_advanced_protection_in_classic_load_balancers [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check shield_advanced_protection_in_classic_load_balancers for reference.', 'N/A', 'shield Resources') } |