Checks/Azure/Test-ContainerregistryNotPubliclyAccessible.ps1
|
function Test-ContainerregistryNotPubliclyAccessible { <# .SYNOPSIS Container Registry public network access is disabled .DESCRIPTION **Azure Container Registry** configuration indicates whether the registry permits **unrestricted public access** based on the `Public network access` setting. .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: containerregistry_not_publicly_accessible [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check containerregistry_not_publicly_accessible for reference.', 'N/A', 'containerregistry Resources') } |