Imported from node011/Bounty-Reaper (
.bountyreper/skill/CIS_benchmarks/Cloud_Providers/Microsoft_Azure/cis-microsoft-azure-compute-services/cis-azure-compute-2.2.14/SKILL.md). Install upstream withnpx skills add node011/Bounty-Reaper --skill cis-azure-compute-2.2.14. Copyright stays with the author (CC-BY-NC-SA-4.0).
Ensure deployment slot is integrated with a virtual network
Description
Integrate App Service deployment slots with a virtual network to enable access to resources in or through a non-internet-routable virtual network.
Rationale
Integrate App Service deployment slots with a virtual network for increased security and control.
Impact
Additional configuration may be required to ensure that traffic is routed properly.
Audit Procedure
Using Azure Portal
- Go to
App Services. - Click the name of an app.
- Under
Deployment, clickDeployment slots. - Click the name of a deployment slot.
- Under
Settings, clickNetworking. - Under
Outbound traffic configuration, next toVirtual network integration, ensure that a virtual network and subnet name are displayed. - Repeat steps 1-6 for each app and deployment slot.
Using Azure CLI
Run the following command to list apps:
az webapp list
For each app, run the following command to list deployment slots:
az webapp deployment slot list --resource-group <resource-group-name> --name <app-name>
For each deployment slot, ensure that virtualNetworkSubnetId is set to a virtual network subnet ID.
Expected Result
The virtualNetworkSubnetId property should contain a valid virtual network subnet resource ID (not null or empty).
Remediation
Using Azure Portal
- Go to
App Services. - Click the name of an app.
- Under
Deployment, clickDeployment slots. - Click the name of a deployment slot.
- Under
Settings, clickNetworking. - Under
Outbound traffic configuration, next toVirtual network integration, clickNot configured. - Click
Add virtual network integration. - Select an existing App Service Plan connection, or select
New connectionand select a subscription, virtual network, and subnet. - Click
Connect. - Repeat steps 1-9 for each app and deployment slot requiring remediation.
Default Value
By default, virtual network integration is not configured.
References
- https://learn.microsoft.com/en-us/azure/app-service/overview-vnet-integration
- https://learn.microsoft.com/en-us/azure/app-service/configure-vnet-integration-enable
- https://learn.microsoft.com/en-us/cli/azure/webapp
- https://learn.microsoft.com/en-us/cli/azure/webapp/deployment/slot
Profile
Level 1 | Automated