Checks/Aws/Test-WellarchitectedWorkloadNoHighOrMediumRisks.ps1
|
function Test-WellarchitectedWorkloadNoHighOrMediumRisks { <# .SYNOPSIS AWS Well-Architected Tool workload has no high or medium risks .DESCRIPTION **AWS Well-Architected workloads** are assessed for the presence and count of risks labeled `HIGH` or `MEDIUM` across the framework pillars. The result indicates whether any such risks remain recorded for the workload. .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: wellarchitected_workload_no_high_or_medium_risks [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check wellarchitected_workload_no_high_or_medium_risks for reference.', 'N/A', 'wellarchitected Resources') } |