Skip to content

Commit 0e76464

Browse files
authored
pull base content,head:MicrosoftDocs:main,into:wwlpublishsync
2 parents f9d3bda + b7fde4d commit 0e76464

File tree

50 files changed

+205
-923
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+205
-923
lines changed

learn-pr/azure/choose-compute-provisioning/includes/5-exercise-deploy-template.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ In the following exercise, you use a Resource Manager template to provision a vi
1414

1515
Let's start by obtaining a configuration file and an Azure Resource Manager template from GitHub.
1616

17+
1. 1. In the Cloud Shell window on the right side of the screen, select the **More** icon (**...**), then select **Settings** > **Go to Classic version**.
18+
1719
1. In Azure Cloud Shell instance on the right, run the following command to clone the GitHub repository.
1820

1921
```bash
@@ -108,6 +110,40 @@ The GitHub repository that you cloned, also contains a Resource Manager template
108110
},
109111
```
110112

113+
1. Let's also update the virtual machine image in the template. Find the following code in the *template.json* file:
114+
115+
```json
116+
"imageSKU": {
117+
"type": "string",
118+
"defaultValue": "2012-R2-Datacenter",
119+
"allowedValues": [
120+
"2008-R2-SP1",
121+
"2012-Datacenter",
122+
"2012-R2-Datacenter"
123+
],
124+
"metadata": {
125+
"description": "Image SKU"
126+
}
127+
},
128+
```
129+
130+
1. Update the code as follows so that it looks like this code:
131+
132+
```json
133+
"imageSKU": {
134+
"type": "string",
135+
"defaultValue": "2019-Datacenter",
136+
"allowedValues": [
137+
"2008-R2-SP1",
138+
"2012-Datacenter",
139+
"2019-Datacenter"
140+
],
141+
"metadata": {
142+
"description": "Image SKU"
143+
}
144+
},
145+
```
146+
111147
1. Save the template by pressing <kbd>Ctrl+S</kbd>.
112148
113149
In the `<variables>` section of the *template.json* file, notice that values are stored to configure networking for a virtual machine.

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/1-introduction.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.introduction
33
title: Introduction
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Introduction
68
description: "Introduction"
7-
ms.date: 02/13/2025
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/2-explore.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.explore
33
title: Explore load balancing
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Explore load balancing
68
description: "Explore load balancing"
7-
ms.date: 02/13/2025
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- references_regions
13-
durationInMinutes: 6
15+
durationInMinutes: 9
1416
content: |
1517
[!include[](includes/2-explore.md)]

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/3-design-implement-azure-load-balancer-using-azure-portal.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,41 @@
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.design-implement-azure-load-balancer-using-azure-portal
33
title: Design and implement Azure load balancer using the Azure portal
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Design and implement Azure load balancer using the Azure portal
68
description: "Design and implement Azure load balancer using the Azure portal"
7-
ms.date: 02/13/2025
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- references_regions
13-
durationInMinutes: 17
15+
durationInMinutes: 9
1416
content: |
1517
[!include[](includes/3-design-implement-azure-load-balancer-using-azure-portal.md)]
1618
quiz:
1719
title: "Check your knowledge"
1820
questions:
19-
- content: "Which of the following statement about external load balancers is correct?"
21+
- content: "The Azure Load Balancer operates at which OSI model layer?"
2022
choices:
21-
- content: "They have a public IP address."
22-
isCorrect: true
23-
explanation: "Correct. External load balancers have public IP addresses."
24-
- content: "They don't have a listener IP address."
23+
- content: "Layer 3"
2524
isCorrect: false
26-
explanation: "Incorrect. External load balancers have public IP addresses."
27-
- content: "They have a private, front-facing IP address."
25+
explanation: "Incorrect. The Azure Load Balancer operates in Layer 4."
26+
- content: "Layer 4"
27+
isCorrect: true
28+
explanation: "Correct. The Azure Load Balancer operates in Layer 4."
29+
- content: "Layer 7"
2830
isCorrect: false
29-
explanation: "Incorrect. External load balancers have public IP addresses."
30-
- content: "When deploying a new Azure Load Balancer that must support outbound traffic rules. Which SKU should be selected?"
31+
explanation: "Incorrect. The Azure Load Balancer operates in Layer 4."
32+
- content: "You're deploying a new Azure Load Balancer that must support availability zones. Which SKU should be selected?"
3133
choices:
3234
- content: "Standard"
3335
isCorrect: true
34-
explanation: "Correct. Standard SKU supports outbound rules through declarative outbound NAT configuration."
36+
explanation: "Correct. Standard SKU supports availability zones."
3537
- content: "Basic"
3638
isCorrect: false
37-
explanation: "Incorrect. Basic SKU doesn't support outbound rules."
39+
explanation: "Incorrect. Basic SKU doesn't support availability zones."
3840
- content: "Either Standard or Basic"
3941
isCorrect: false
40-
explanation: "Incorrect. Basic SKU doesn't support outbound rules."
42+
explanation: "Incorrect. Basic SKU doesn't support availability zones."

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/4-exercise-create-configure-azure-load-balancer.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.exercise-create-configure-azure-load-balancer
3-
title: 'Exercise: create and configure an Azure load balancer'
3+
title: 'Exercise: Create and configure an Azure load balancer'
44
metadata:
5-
title: 'Exercise: create and configure an Azure load balancer'
6-
description: "Exercise: create and configure an Azure load balancer"
7-
ms.date: 02/13/2025
5+
adobe-target: true
6+
prefetch-feature-rollout: true
7+
title: 'Exercise: Create and configure an Azure load balancer'
8+
description: "Exercise: Create and configure an Azure load balancer"
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/5-explore-azure-traffic-manager.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,41 @@
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.explore-azure-traffic-manager
33
title: Explore Azure Traffic Manager
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Explore Azure Traffic Manager
68
description: "Explore Azure Traffic Manager"
7-
ms.date: 02/13/2025
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- references_regions
13-
durationInMinutes: 14
15+
durationInMinutes: 12
1416
content: |
1517
[!include[](includes/5-explore-azure-traffic-manager.md)]
1618
quiz:
1719
title: "Check your knowledge"
1820
questions:
19-
- content: "What are two benefits of Traffic Manager?"
21+
- content: "The Azure Traffic Manager operates at which OSI model layer?"
2022
choices:
21-
- content: "Distribution of traffic and continuous monitoring of endpoint health."
22-
isCorrect: true
23-
explanation: "Correct. Distribution of traffic according to one of several traffic-routing methods and continuous monitoring of endpoint health and automatic failover when endpoints fail."
24-
- content: "Resolution of DNS queries and reduced need for DNS servers."
23+
- content: "Layer 3"
2524
isCorrect: false
26-
explanation: "Incorrect. Traffic Manager uses DNS to direct clients to specific service endpoints based on the rules of the traffic-routing method."
27-
- content: "Supports one traffic-routing method and integrates with DNS."
25+
explanation: "Incorrect. Traffic Manager works at the application level, Layer 7 ."
26+
- content: "Layer 4"
2827
isCorrect: false
29-
explanation: "Incorrect. Azure Traffic Manager supports six traffic-routing methods. The traffic-routing method determines which endpoint is returned in the DNS response."
30-
- content: "Which traffic-routing method should be use when end users need to use the \"closest\" endpoint for the lowest network latency?"
28+
explanation: "Incorrect. Traffic Manager works at the application level, Layer-7."
29+
- content: "Layer 7"
30+
isCorrect: true
31+
explanation: "Correct. Traffic Manager works at the application level, Layer-7."
32+
- content: "Which traffic-routing method provides the lowest network latency by selecting the users closest location?"
3133
choices:
3234
- content: "Performance"
3335
isCorrect: true
34-
explanation: "Correct. Use for endpoints in different geographic locations, and you want end users to use the \"closest\" endpoint for the lowest network latency."
36+
explanation: "Correct. Performance routing uses the closest endpoint for the lowest network latency."
3537
- content: "Geographic"
3638
isCorrect: false
37-
explanation: "Incorrect. Select this routing method to direct users to specific endpoints (Azure, External, or Nested) based on where their DNS queries originate from geographically."
39+
explanation: "Incorrect. Geographic routing directs users to specific endpoints based on where the query originated."
3840
- content: "Priority"
3941
isCorrect: false
40-
explanation: "Incorrect. Select this routing method for one primary service endpoint for all traffic. You can provide multiple backup endpoints in case the primary or one of the backup endpoints is unavailable."
42+
explanation: "Incorrect. Priority routing directs all traffic to one primary service endpoint."

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/6-exercise-create-traffic-manager-profile-using-azure-portal.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
### YamlMime:ModuleUnit
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.exercise-create-traffic-manager-profile-using-azure-portal
3-
title: 'Exercise: create a Traffic Manager profile using the Azure portal'
3+
title: 'Exercise: Create a Traffic Manager profile using the Azure portal'
44
metadata:
5-
title: 'Exercise: create a Traffic Manager profile using the Azure portal'
6-
description: "Exercise: create a Traffic Manager profile using the Azure portal"
7-
ms.date: 02/13/2025
5+
adobe-target: true
6+
prefetch-feature-rollout: true
7+
title: 'Exercise: Create a Traffic Manager profile using the Azure portal'
8+
description: "Exercise: Create a Traffic Manager profile using the Azure portal"
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/7-summary.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
uid: learn.wwl.load-balancing-non-https-traffic-azure.summary
33
title: Summary
44
metadata:
5+
adobe-target: true
6+
prefetch-feature-rollout: true
57
title: Summary
68
description: "Summary"
7-
ms.date: 02/13/2025
9+
ms.date: 04/07/2025
810
author: wwlpublish
911
ms.author: cynthist
1012
ms.topic: unit
1113
ms.custom:
1214
- references_regions
13-
durationInMinutes: 1
15+
durationInMinutes: 2
1416
content: |
1517
[!include[](includes/7-summary.md)]

learn-pr/wwl-azure/load-balancing-non-https-traffic-azure/includes/1-introduction.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Azure provides different flavors of load balancing services that help with the d
66

77
In this module, you:
88

9-
- Understand options for load balancing.
10-
- Design and implement an Azure Load Balancer.
11-
- Implement a Traffic Manager profile.
9+
- Understand non-HTTP(S) options for load balancing.
10+
- Learn about the Azure Load Balancer.
11+
- Learn about Azure Traffic Manager.
1212

1313
## Prerequisites
1414

15-
- You should have experience with networking concepts, such as IP addressing, Domain Name System (DNS), and routing
16-
- You should have experience with network connectivity methods, such as VPN or WAN
17-
- You should have experience with the Azure portal and Azure PowerShell
15+
- You should have experience with networking concepts, such as IP addressing, Domain Name System (DNS), and routing.
16+
- You should have experience with network connectivity methods, such as VPN or WAN.
17+
- You should have experience with the Azure portal and Azure PowerShell.

0 commit comments

Comments
 (0)