Checks/Aws/Test-TrustedadvisorErrorsAndWarnings.ps1
|
function Test-TrustedadvisorErrorsAndWarnings { <# .SYNOPSIS Trusted Advisor check has no errors or warnings .DESCRIPTION **AWS Trusted Advisor** check statuses are assessed to identify items in `warning` or `error`. The finding reflects the state reported by Trusted Advisor across categories such as **Security**, **Fault Tolerance**, **Service Limits**, and **Cost**, indicating where configurations or quotas require attention. .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: trustedadvisor_errors_and_warnings [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check trustedadvisor_errors_and_warnings for reference.', 'N/A', 'trustedadvisor Resources') } |