An Azure network security service that is used to protect Azure Virtual Network resources.
To locate a hidden Azure Firewall that may be incurring costs, you can use the Azure portal, Azure CLI, or Azure PowerShell to validate your resources. Here are steps you can follow:
- Azure Portal: Log in to the Azure portal and navigate to the Resource Groups section. Check each resource group for any existing Azure Firewall resources.
- Azure CLI: You can use the following command to list all resources in a specific resource group:
Replaceaz resource list --resource-group <YourResourceGroupName><YourResourceGroupName>with the name of your resource group. - Azure PowerShell: Similarly, you can use PowerShell to get a list of resources:
Again, replaceGet-AzResource -ResourceGroupName <YourResourceGroupName><YourResourceGroupName>with the appropriate name.
If you still cannot find the firewall, consider checking for any associated public IP addresses or other resources that might be linked to the firewall, as they could also contribute to the billing.
Additionally, ensure that you check all subscriptions you have access to, as the firewall might be deployed in a different subscription than the one you are currently viewing.
References:
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.