Checks/Aws/Test-NeptuneClusterSnapshotEncrypted.ps1
|
function Test-NeptuneClusterSnapshotEncrypted { <# .SYNOPSIS Neptune DB cluster snapshot is encrypted at rest .DESCRIPTION Neptune DB cluster snapshot is encrypted at rest. The evaluation looks at whether each snapshot's encrypted attribute is enabled, confirming that the data is protected while stored. .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: neptune_cluster_snapshot_encrypted [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check neptune_cluster_snapshot_encrypted for reference.', 'N/A', 'neptune Resources') } |