Checks/Azure/Test-DefenderEnsureNotifyEmailsToOwners.ps1
|
function Test-DefenderEnsureNotifyEmailsToOwners { <# .SYNOPSIS Security contact notifications include the Owner role .DESCRIPTION **Microsoft Defender for Cloud** email notifications target subscription users in the `Owner` role through role-based recipients. .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_notify_emails_to_owners [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check defender_ensure_notify_emails_to_owners for reference.', 'N/A', 'defender Resources') } |