Skip to content

Commit 20a4e39

Browse files
Merge pull request #284433 from AbdullahBell/vnet-incubation-freshness
Virtual Network: Content Incubation: Freshness: 3 Articles
2 parents a74e8d8 + 6afdb9c commit 20a4e39

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/virtual-network/how-to-create-encryption-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: asudbring
66
ms.service: azure-virtual-network
77
ms.custom: devx-track-azurecli
88
ms.topic: how-to
9-
ms.date: 05/24/2023
9+
ms.date: 08/13/2024
1010
ms.author: allensu
1111
---
1212

articles/virtual-network/ip-services/configure-routing-preference-virtual-machine-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: mbender
66
ms.service: azure-virtual-network
77
ms.subservice: ip-services
88
ms.topic: tutorial
9-
ms.date: 08/24/2023
9+
ms.date: 08/12/2024
1010
ms.custom: template-tutorial, devx-track-azurecli
1111
ms.devlang: azurecli
1212
---
@@ -61,7 +61,7 @@ az vm create \
6161
--name myVM \
6262
--resource-group TutorVMRoutePref-rg \
6363
--public-ip-address myPublicIP \
64-
--size Standard_A2 \
64+
--size Standard_D2a_v4 \
6565
--image MicrosoftWindowsServer:WindowsServer:2019-Datacenter:latest \
6666
--admin-username azureuser
6767
```

articles/virtual-network/ip-services/routing-preference-azure-kubernetes-service-cli.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titlesuffix: Azure virtual network
44
description: Use this tutorial to learn how to configure routing preference for an Azure Kubernetes Service.
55
author: mbender-ms
66
ms.author: mbender
7-
ms.date: 08/24/2023
7+
ms.date: 08/12/2024
88
ms.service: azure-virtual-network
99
ms.subservice: ip-services
1010
ms.topic: tutorial
@@ -30,28 +30,28 @@ In this tutorial, you learn how to:
3030

3131
## Create a resource group
3232

33-
Create a resource group with the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group in the **East US** Azure region:
33+
Create a resource group with the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group in the **West Europe** Azure region:
3434

3535
```azurecli-interactive
3636
az group create \
3737
--name TutorAKSRP-rg \
38-
--location eastus
38+
--location westeurope
3939
4040
```
4141

4242
## Create public IP with Internet routing preference
4343

4444
Create a public IP address with routing preference of **Internet** type using command [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create).
4545

46-
The following command creates a new public IP with **Internet** routing preference in the **East US** Azure region.
46+
The following command creates a new public IP with **Internet** routing preference in the **West Europe** Azure region.
4747

4848
```azurecli-interactive
4949
az network public-ip create \
50-
--resource-group TutorAKSRP-rg \
5150
--name myPublicIP-IR \
52-
--version IPv4 \
51+
--resource-group TutorAKSRP-rg \
5352
--ip-tags 'RoutingPreference=Internet' \
5453
--sku Standard \
54+
--version IPv4 \
5555
--zone 1 2 3
5656
```
5757
> [!NOTE]
@@ -88,7 +88,7 @@ The following command creates the Kubernetes cluster and uses the variable for t
8888
8989
To validate, search for the public IP created in the earlier step in Azure portal. The public IP is associated with the load balancer. The load balancer is associated with the Kubernetes cluster as shown below:
9090

91-
:::image type="content" source="./media/routing-preference-azure-kubernetes-service-cli/verify-aks-ip.png" alt-text="Screenshot of AKS cluster public IP address.":::
91+
:::image type="content" source="./media/routing-preference-azure-kubernetes-service-cli/verify-aks-ip.png" alt-text="Screenshot of AKS cluster public IP address." lightbox="./media/routing-preference-azure-kubernetes-service-cli/verify-aks-ip.png":::
9292

9393
## Clean up resources
9494

0 commit comments

Comments
 (0)