Checks/Aws/Test-NeptuneClusterCopyTagsToSnapshots.ps1
|
function Test-NeptuneClusterCopyTagsToSnapshots { <# .SYNOPSIS Neptune DB cluster is configured to copy tags to snapshots. .DESCRIPTION Neptune DB cluster is configured to copy all tags to snapshots when snapshots are created. .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_copy_tags_to_snapshots [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check neptune_cluster_copy_tags_to_snapshots for reference.', 'N/A', 'neptune Resources') } |