Checks/Aws/Test-DirectoryserviceSupportedMfaRadiusEnabled.ps1
|
function Test-DirectoryserviceSupportedMfaRadiusEnabled { <# .SYNOPSIS AWS Directory Service directory has RADIUS-based MFA enabled .DESCRIPTION **AWS Directory Service directories** are evaluated for **RADIUS-backed multi-factor authentication**, confirming that MFA is configured and the RADIUS integration is active. .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: directoryservice_supported_mfa_radius_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check directoryservice_supported_mfa_radius_enabled for reference.', 'N/A', 'directoryservice Resources') } |