Skip to content

Commit f096dcb

Browse files
committed
Updates per Cary Chai.
1 parent 6ff10a4 commit f096dcb

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

articles/container-apps/TOC.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,12 +294,8 @@
294294
items:
295295
- name: Architecture overview
296296
href: networking.md
297-
- name: Environments
298-
items:
299-
- name: Deploy with an external environment
300-
href: vnet-custom.md
301-
- name: Deploy with an internal environment
302-
href: vnet-custom-internal.md
297+
- name: Use a custom virtual network
298+
href: vnet-custom.md
303299
- name: Ingress
304300
items:
305301
- name: Overview
@@ -333,8 +329,6 @@
333329
href: how-to-use-private-endpoint.md
334330
- name: Integrate with Azure Front Door
335331
href: how-to-integrate-with-azure-front-door.md
336-
- name: Use a custom VNET
337-
href: vnet-custom.md
338332
- name: Languages and runtimes
339333
items:
340334
- name: .NET

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ $VnetName = 'my-custom-vnet'
9999

100100
---
101101

102-
Now create a virtual network to associate with the Container Apps environment. The virtual network must have two subnets available for the container app instance.
102+
Now create a virtual network to associate with the Container Apps environment. The virtual network must have a subnet available for the environment deployment.
103103

104104
# [Bash](#tab/bash)
105105

articles/container-apps/vnet-custom.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ az network vnet subnet create \
116116
--resource-group $RESOURCE_GROUP \
117117
--vnet-name $VNET_NAME \
118118
--name infrastructure-subnet \
119-
--address-prefixes 10.0.0.0/21
119+
--address-prefixes 10.0.0.0/23
120120
```
121121

122122
# [Azure PowerShell](#tab/azure-powershell)
123123

124124
```azurepowershell-interactive
125125
$SubnetArgs = @{
126126
Name = 'infrastructure-subnet'
127-
AddressPrefix = '10.0.0.0/21'
127+
AddressPrefix = '10.0.0.0/23'
128128
}
129129
$subnet = New-AzVirtualNetworkSubnetConfig @SubnetArgs
130130
```

0 commit comments

Comments
 (0)