tests/Test-Assessment.21775.ps1
|
<# .SYNOPSIS #> function Test-Assessment-21775{ [ZtTest( Category = 'Application management', ImplementationCost = 'Medium', Pillar = 'Identity', RiskLevel = 'Medium', SfiPillar = 'Protect identities and secrets', TenantType = ('Workforce','External'), TestId = 21775, Title = 'Enforce standards for app secrets and certificates', UserImpact = 'Low' )] [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking Tenant app management policy is configured" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21775' -Title "Tenant app management policy is configured" ` -UserImpact Medium -Risk Low -ImplementationCost Low ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |