Skip to content

Commit 89bc797

Browse files
Merge pull request #250871 from ShichaoQiu/patch-16
Update how-to-create-user-defined-route-instance.md
2 parents a2a41f0 + f9f1408 commit 89bc797

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/spring-apps/how-to-create-user-defined-route-instance.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,9 @@ az network firewall network-rule create \
214214
--protocols 'TCP' \
215215
--source-addresses '*' \
216216
--destination-addresses "AzureCloud" \
217-
--destination-ports 443 445
217+
--destination-ports 443 445 \
218+
--action allow \
219+
--priority 100
218220
219221
# Add firewall application rules.
220222
@@ -226,7 +228,8 @@ az network firewall application-rule create \
226228
--source-addresses '*' \
227229
--protocols 'https=443' \
228230
--fqdn-tags "AzureKubernetesService" \
229-
--action allow --priority 100
231+
--action allow \
232+
--priority 100
230233
```
231234

232235
### Associate route tables with subnets

0 commit comments

Comments
 (0)