AZ-204 Connect to and consume Azure services and third-party services • Set 10
AZ-204 Connect to and consume Azure services and third-party services Practice Test 10 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You are deploying an ARM template that includes the above network security group rule. The rule is intended to block all outbound internet traffic from a virtual network. However, after deployment, virtual machines in the subnet still have outbound internet access. What is the most likely reason?
Refer to the exhibit.
{
"type": "Microsoft.Network/networkSecurityGroups/securityRules",
"apiVersion": "2021-02-01",
"name": "DenyInternetOutbound",
"properties": {
"priority": 100,
"direction": "Outbound",
"access": "Deny",
"sourceAddressPrefixes": ["VirtualNetwork"],
"destinationAddressPrefixes": ["Internet"],
"destinationPortRanges": ["*"],
"protocol": "*",
"sourcePortRange": "*"
}
}