Astraeus Telemetry is designing a secure Azure architecture for an IoT processing workload. The architecture includes a virtual network named VNet1 that contains a subnet hosting virtual machines. The virtual machines must make outbound connections to specific external fully qualified domain names (FQDNs) on the internet, such as *.api.weather.com and registry.npmjs.org, to fetch environmental data and software updates. The design must filter outbound traffic based on these FQDNs and support wildcard routing while minimizing administrative effort. Which component should you recommend including in the design?
- ANetwork Security Groups associated with the subnet, containing rules that target the specific IP addresses of the external services.
- BA User Defined Route associated with the subnet that redirects all outbound internet traffic to an Azure Standard Load Balancer.
- Azure Firewall deployed in VNet1, with application rules configured to allow outbound traffic to the required fully qualified domain names.Cevap
- DA User Defined Route associated with the subnet containing routing rules configured with the fully qualified domain names as the next hop destination.
Cevap
Azure Firewall deployed in VNet1, with application rules configured to allow outbound traffic to the required fully qualified domain names.
The correct answer is the option recommending Azure Firewall with application rules. Azure Firewall operates as a fully managed cloud-based network security service that protects your Azure Virtual Network resources. Its application rules allow you to configure fully qualified domain names (FQDNs) that can be accessed from a subnet, which naturally supports wildcard configurations like '*.api.weather.com'. This satisfies both the security filtering requirement and the administrative overhead constraint.
Adım Adım Çözüm
Anahtar Kavram
Azure Firewall Application Rules for Outbound FQDN Filtering