Checks/Aws/Test-RdsInstanceIamAuthenticationEnabled.ps1
|
function Test-RdsInstanceIamAuthenticationEnabled { <# .SYNOPSIS RDS instance has IAM database authentication enabled .DESCRIPTION **RDS DB instances** using MySQL, MariaDB, or PostgreSQL engines (including Aurora variants) have **IAM database authentication** enabled at the instance level or, when part of a cluster, evaluated for cluster-level enablement. .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: rds_instance_iam_authentication_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check rds_instance_iam_authentication_enabled for reference.', 'N/A', 'rds Resources') } |