Checks/Aws/Test-EfsHaveBackupEnabled.ps1
|
function Test-EfsHaveBackupEnabled { <# .SYNOPSIS EFS file system has backup enabled .DESCRIPTION **Amazon EFS file systems** are assessed for automated backups configured via the `backup policy`. The finding highlights file systems where backups are not enabled or are being disabled. .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: efs_have_backup_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check efs_have_backup_enabled for reference.', 'N/A', 'efs Resources') } |