Ensure public network access is disabled for Batch accounts
Description
Disabling public network access ensures all connectivity occurs through private endpoints or approved virtual networks.
Rationale
Public network access exposes Batch accounts to internet threats like DDoS attacks and unauthorized access, violating Zero Trust principles and compliance requirements for secure data processing environments.
Impact
A virtual network or private endpoint should be implemented for the Batch account prior to disabling public network access.
Audit Procedure
Using Azure Portal
- Login to
https://portal.azure.com - For each Batch Account, click on the Batch account name
- Navigate to the
Settingsdrop-down, then clickNetworking. - Under the
Public accesstab, ensure that Public Network Access is set toDisabled.
Repeat for each Batch account in scope.
Using Azure CLI
az batch account show \
--name <batch-account-name> \
--resource-group <resource-group> \
--query "publicNetworkAccess"
Using Azure PowerShell
(Get-AzBatchAccount -Name "<batch-account-name>").PublicNetworkAccess
Expected Output: Disabled
Expected Result
The publicNetworkAccess setting should be Disabled for all Batch accounts.
Remediation
Using Azure Portal
- Login to
https://portal.azure.com - For each Batch Account, click on the Batch account name
- Navigate to the
Settingsdrop-down, then clickNetworking. - Under the
Public accesstab, ensure that Public Network Access is set toDisabled. - Click
Save
Repeat for each Batch account in scope.
Using Azure CLI
az batch account update \
--name <account-name> \
--resource-group <rg-name> \
--public-network-access Disabled
Using Azure PowerShell
Update-AzBatchAccount -Name <account-name> -ResourceGroupName <rg-name> -PublicNetworkAccess Disabled
Default Value
Public network access is enabled by default for new Batch accounts.
References
- https://learn.microsoft.com/en-us/security/benchmark/azure/baselines/batch-security-baseline#ns-4
- https://learn.microsoft.com/en-us/azure/batch/private-connectivity
Profile
Level 1 | Automated