Checks/Aws/Test-NeptuneClusterIamAuthenticationEnabled.ps1
|
function Test-NeptuneClusterIamAuthenticationEnabled { <# .SYNOPSIS Neptune cluster has IAM authentication enabled .DESCRIPTION Neptune DB clusters are evaluated for **IAM database authentication**. If this setting is enabled, the cluster supports IAM-based authentication. If disabled, the cluster requires traditional database credentials instead. .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_iam_authentication_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check neptune_cluster_iam_authentication_enabled for reference.', 'N/A', 'neptune Resources') } |