Skip to content

Commit a4ce2e6

Browse files
Apply suggestions from code review
Co-authored-by: Paolo Salvatori <leprino@hotmail.com>
1 parent 23d33bd commit a4ce2e6

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

src/content/docs/azure/services/virtual-network.mdx

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,17 @@ import AzureFeatureCoverage from "../../../../components/feature-coverage/AzureF
1010

1111
Azure Virtual Network (VNet) is the core networking service for isolating and routing Azure resources in private IP address spaces.
1212
It lets you define address ranges, create subnets, and control network behavior for applications.
13-
VNets are commonly used to model secure, segmented network topologies in cloud environments.
13+
Virtual networks are commonly used to model secure, segmented network topologies in cloud environments. For more information, see [What is Azure Virtual Network?](https://learn.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview).
1414

15-
LocalStack for Azure allows you to build and test Virtual Network workflows in your local environment.
15+
LocalStack for Azure provides a local environment to build and test Azure networking resources, such as virtual networks, private endpoints, and private DNS zones.
1616
The supported APIs are available on our [API Coverage section](#api-coverage), which provides information on the extent of Virtual Network's integration with LocalStack.
1717

1818
## Getting started
1919

2020
This guide is designed for users new to Virtual Network and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script.
2121

22-
Start your LocalStack container using your preferred method.
23-
Then start CLI interception:
22+
Launch LocalStack using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). Once the container is running, enable Azure CLI interception by running:
2423

25-
```bash
26-
azlocal start_interception
27-
```
2824

2925
### Create a resource group
3026

@@ -51,7 +47,7 @@ az group create \
5147

5248
### Create and inspect a virtual network
5349

54-
Create a VNet with a `10.0.0.0/16` address space:
50+
Create a virtual network with a `10.0.0.0/16` address space:
5551

5652
```bash
5753
az network vnet create \
@@ -76,7 +72,7 @@ az network vnet create \
7672
}
7773
```
7874

79-
Get the VNet details:
75+
Get the virtual network (VNet) details:
8076

8177
```bash
8278
az network vnet show \
@@ -119,7 +115,7 @@ az network vnet subnet create \
119115
}
120116
```
121117

122-
Get and list subnets:
118+
Retrieve new subnet details and list all VNet subnets
123119

124120
```bash
125121
az network vnet subnet show \
@@ -147,7 +143,7 @@ az network vnet subnet list \
147143
]
148144
```
149145

150-
Create a second subnet, delete the first subnet, and list again:
146+
Add a second subnet to the virtual network, remove the first , and relist all subnets:
151147

152148
```bash
153149
az network vnet subnet create \
@@ -211,7 +207,7 @@ az network vnet update \
211207

212208
### Delete and verify
213209

214-
Delete the VNet and verify the list is empty:
210+
Delete the VNet and validate that no virtual networks remain in the resource group:
215211

216212
```bash
217213
az network vnet delete \

0 commit comments

Comments
 (0)