Skip to content

Commit 70eaf4c

Browse files
craigshoemakerKendall
andauthored
Apply suggestions from code review
Co-authored-by: Kendall <[email protected]>
1 parent 05e8839 commit 70eaf4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/container-apps/vnet-custom-internal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ az network vnet create `
111111
az network vnet subnet create `
112112
--resource-group $RESOURCE_GROUP `
113113
--vnet-name $VNET_NAME `
114-
--name infrastructure `
114+
--name infrastructure-subnet `
115115
--address-prefixes 10.0.0.0/23
116116
```
117117

@@ -126,7 +126,7 @@ VNET_RESOURCE_ID=`az network vnet show --resource-group ${RESOURCE_GROUP} --name
126126
```
127127

128128
```bash
129-
INFRASTRUCTURE_SUBNET=`az network vnet subnet show --resource-group ${RESOURCE_GROUP} --vnet-name $VNET_NAME --name infrastructure --query "id" -o tsv | tr -d '[:space:]'`
129+
INFRASTRUCTURE_SUBNET=`az network vnet subnet show --resource-group ${RESOURCE_GROUP} --vnet-name $VNET_NAME --name infrastructure-subnet --query "id" -o tsv | tr -d '[:space:]'`
130130
```
131131

132132
# [PowerShell](#tab/powershell)
@@ -136,7 +136,7 @@ $VNET_RESOURCE_ID=(az network vnet show --resource-group $RESOURCE_GROUP --name
136136
```
137137

138138
```powershell
139-
$INFRASTRUCTURE_SUBNET=(az network vnet subnet show --resource-group $RESOURCE_GROUP --vnet-name $VNET_NAME --name infrastructure --query "id" -o tsv)
139+
$INFRASTRUCTURE_SUBNET=(az network vnet subnet show --resource-group $RESOURCE_GROUP --vnet-name $VNET_NAME --name infrastructure-subnet --query "id" -o tsv)
140140
```
141141

142142
---

articles/container-apps/vnet-custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $VNET_NAME="my-custom-vnet"
7777
Now create an Azure virtual network to associate with the Container Apps environment. The virtual network must have a subnet available for the environment deployment.
7878

7979
> [!NOTE]
80-
> You can use an existing virtual network, but a dedicateed subnet is required for use with Container Apps.
80+
> You can use an existing virtual network, but a dedicated subnet is required for use with Container Apps.
8181
8282
# [Bash](#tab/bash)
8383

0 commit comments

Comments
 (0)