vnet in Azure
With the cli 2.0
az network vnet create \
-n TestVNet1 \
-g TestRG1 \
--address-prefix 10.11.0.0/16 \
-l eastus \
--subnet-name FrontEnd \
--subnet-prefix 10.11.0.0/24
Vnet Update command overwrites the previous settings.