You need to create a Network Security group using the PowerShell cmdlet and configure NSG rules to allow RDP and HTTP traffic. $rule1 = New-AzNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" ` -Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix ` Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389 $rule2 = New-AzNetworkSecurityRuleConfig -Name web-rule -Description "Allow HTTP" ` -Access Allow -Protocol Tcp -Direction Inbound -Priority 101 -SourceAddressPrefix ` Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 80 New-AzNetworkSecurityGroup -ResourceGroupName TestRG -Location westus -Name ` "NSG-FrontEnd" -SecurityRules $rule1, $rule2 You executed the above PowerShell cmdlet; is it correct?