Checks/Aws/Test-ShieldAdvancedProtectionInInternetFacingLoadBalancers.ps1
|
function Test-ShieldAdvancedProtectionInInternetFacingLoadBalancers { <# .SYNOPSIS Internet-facing Application Load Balancer is protected by AWS Shield Advanced .DESCRIPTION **Application Load Balancers** that are **internet-facing** are evaluated for an associated **AWS Shield Advanced** protection. Scope includes ALBs of type application with external exposure. .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_internet_facing_load_balancers [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check shield_advanced_protection_in_internet_facing_load_balancers for reference.', 'N/A', 'shield Resources') } |