tests/Test-Assessment.22659.ps1
<# .SYNOPSIS #> function Test-Assessment-22659{ [ZtTest( Category = 'Monitoring', ImplementationCost = 'High', Pillar = 'Identity', RiskLevel = 'High', SfiPillar = 'Protect identities and secrets', TenantType = ('Workforce','External'), TestId = 22659, Title = 'All risky workload identity sign-ins are triaged', UserImpact = 'Low' )] [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking All risky workload identity sign ins are triaged" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '22659' -Title "All risky workload identity sign ins are triaged" ` -UserImpact Low -Risk High -ImplementationCost High ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |