internal/eidsca/Test-MtEidscaCR01.ps1
|
<# .SYNOPSIS Checks if Consent Framework - Admin Consent Request - Policy to enable or disable admin consent request feature is set to 'true' .DESCRIPTION Defines if admin consent request feature is enabled or disabled Queries policies/adminConsentRequestPolicy and returns the result of graph/policies/adminConsentRequestPolicy.isEnabled -eq 'true' .EXAMPLE Test-MtEidscaCR01 Returns the result of graph.microsoft.com/beta/policies/adminConsentRequestPolicy.isEnabled -eq 'true' #> function Test-MtEidscaCR01 { [CmdletBinding()] [OutputType([bool])] param() $result = Invoke-MtGraphRequest -RelativeUri "policies/adminConsentRequestPolicy" -ApiVersion beta [string]$tenantValue = $result.isEnabled $testResult = $tenantValue -eq 'true' $tenantValueNotSet = ($null -eq $tenantValue -or $tenantValue -eq "") -and 'true' -notlike '*$null*' if($testResult){ $testResultMarkdown = "Well done. The configuration in your tenant and recommended value is **'true'** for **policies/adminConsentRequestPolicy**" } elseif ($tenantValueNotSet) { $testResultMarkdown = "Your tenant is **not configured explicitly**.`n`nThe recommended value is **'true'** for **policies/adminConsentRequestPolicy**. It seems that you are using a default value by Microsoft. We recommend to set the setting value explicitly since non set values could change depending on what Microsoft decides the current default should be." } else { $testResultMarkdown = "Your tenant is configured as **$($tenantValue)**.`n`nThe recommended value is **'true'** for **policies/adminConsentRequestPolicy**" } Add-MtTestResultDetail -Result $testResultMarkdown -Severity '' return $tenantValue } |