Checks/Aws/Test-CognitoUserPoolWafAclAttached.ps1
|
function Test-CognitoUserPoolWafAclAttached { <# .SYNOPSIS Amazon Cognito user pool is associated with a WAF Web ACL .DESCRIPTION Amazon Cognito user pools are evaluated for an association with an **AWS WAFv2 web ACL** that filters and controls requests to the hosted UI and public user pool API endpoints. .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: cognito_user_pool_waf_acl_attached [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check cognito_user_pool_waf_acl_attached for reference.', 'N/A', 'cognito Resources') } |