Checks/Azure/Test-DefenderEnsureDefenderForAppServicesIsOn.ps1
|
function Test-DefenderEnsureDefenderForAppServicesIsOn { <# .SYNOPSIS Defender for App Services is set to On (Standard pricing tier) .DESCRIPTION **Azure subscriptions** are evaluated for **Defender for App Service** coverage by inspecting the `AppServices` pricing configuration. The finding indicates whether the plan is set to `Standard`, which applies protection to App Service resources at the subscription scope. .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: defender_ensure_defender_for_app_services_is_on [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check defender_ensure_defender_for_app_services_is_on for reference.', 'N/A', 'defender Resources') } |