Skip to content

Commit b69b18b

Browse files
authored
Merge pull request #74260 from jyama4ta/patch-1
Remove undefined variable
2 parents 2cc9695 + 082f812 commit b69b18b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/aks/limit-egress-traffic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ Create an empty route table to be associated with a given subnet. The route tabl
373373
# Create UDR and add a route for Azure Firewall
374374
375375
az network route-table create -g $RG -l $LOC --name $FWROUTE_TABLE_NAME
376-
az network route-table route create -g $RG --name $FWROUTE_NAME --route-table-name $FWROUTE_TABLE_NAME --address-prefix 0.0.0.0/0 --next-hop-type VirtualAppliance --next-hop-ip-address $FWPRIVATE_IP --subscription $SUBID
376+
az network route-table route create -g $RG --name $FWROUTE_NAME --route-table-name $FWROUTE_TABLE_NAME --address-prefix 0.0.0.0/0 --next-hop-type VirtualAppliance --next-hop-ip-address $FWPRIVATE_IP
377377
az network route-table route create -g $RG --name $FWROUTE_NAME_INTERNET --route-table-name $FWROUTE_TABLE_NAME --address-prefix $FWPUBLIC_IP/32 --next-hop-type Internet
378378
```
379379

0 commit comments

Comments
 (0)