Checks/Aws/Test-VpcEndpointMultiAzEnabled.ps1
|
function Test-VpcEndpointMultiAzEnabled { <# .SYNOPSIS Amazon VPC interface endpoint has subnets in multiple Availability Zones .DESCRIPTION **VPC interface endpoints** are evaluated for whether their endpoint network interfaces are placed in **multiple subnets**, which implies distribution across different **Availability Zones**. Endpoints present in only one subnet are identified. .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: vpc_endpoint_multi_az_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check vpc_endpoint_multi_az_enabled for reference.', 'N/A', 'vpc Resources') } |