Checks/Aws/Test-OpensearchServiceDomainsHttpsCommunicationsEnforced.ps1
|
function Test-OpensearchServiceDomainsHttpsCommunicationsEnforced { <# .SYNOPSIS OpenSearch domain has HTTPS enforcement enabled .DESCRIPTION Amazon OpenSearch Service domains with **HTTPS enforcement** require encrypted connections. This assessment identifies domains missing `Require HTTPS for all traffic`, indicating that unencrypted HTTP is accepted. .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: opensearch_service_domains_https_communications_enforced [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check opensearch_service_domains_https_communications_enforced for reference.', 'N/A', 'opensearch Resources') } |