Checks/Aws/Test-CloudfrontDistributionsFieldLevelEncryptionEnabled.ps1
|
function Test-CloudfrontDistributionsFieldLevelEncryptionEnabled { <# .SYNOPSIS CloudFront distribution has Field Level Encryption enabled .DESCRIPTION CloudFront distributions have the default cache behavior associated with **Field-Level Encryption** via `field_level_encryption_id`, targeting specified request fields for edge encryption. .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: cloudfront_distributions_field_level_encryption_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check cloudfront_distributions_field_level_encryption_enabled for reference.', 'N/A', 'cloudfront Resources') } |