Checks/Aws/Test-NeptuneClusterStorageEncrypted.ps1
|
function Test-NeptuneClusterStorageEncrypted { <# .SYNOPSIS Neptune cluster storage is encrypted at rest .DESCRIPTION Neptune DB cluster is evaluated for **encryption at rest**. Indicating the cluster's underlying storage is not encrypted. .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_storage_encrypted [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check neptune_cluster_storage_encrypted for reference.', 'N/A', 'neptune Resources') } |