Skip to content

Commit 62025f7

Browse files
authored
Merge pull request #96425 from asudbring/lbfreshness
Freshness update of article
2 parents 21298ff + 1b274dd commit 62025f7

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed
Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Azure Resource Manager support for Load Balancer | Microsoft Docs
3-
description: Using powershell for Load Balancer with Azure Resource Manager. Using templates for load balancer
2+
title: Azure Resource Manager support for Load Balancer
3+
description: In this article, use Azure PowerShell and templates with Azure Load Balancer
44
services: load-balancer
55
documentationcenter: na
66
author: asudbring
@@ -9,11 +9,11 @@ ms.devlang: na
99
ms.topic: article
1010
ms.tgt_pltfrm: na
1111
ms.workload: infrastructure-services
12-
ms.date: 09/25/2017
12+
ms.date: 11/19/2019
1313
ms.author: allensu
1414
---
1515

16-
# Using Azure Resource Manager Support with Azure Load Balancer
16+
# Azure Resource Manager Support with Azure Load Balancer
1717

1818

1919

@@ -23,9 +23,9 @@ Azure Resource Manager is the preferred management framework for services in Azu
2323

2424
With Resource Manager, Azure Load Balancer contains the following child resources:
2525

26-
* Front-end IP configuration – a Load balancer can include one or more frontend IP addresses, otherwise known as a virtual IPs (VIPs). These IP addresses serve as ingress for the traffic.
27-
* Back-end address pool – these are IP addresses associated with the virtual machine Network Interface Card (NIC) to which load is distributed.
28-
* Load balancing rules – a rule property maps a given frontend IP and port combination to a set of back-end IP addresses and port combination. A single load balancer can have multiple load balancing rules. Each rule is a combination of a frontend IP and port and back-end IP and port associated with VMs.
26+
* Front-end IP configuration – a load balancer can include one or more frontend IP addresses, otherwise known as a virtual IPs (VIPs). These IP addresses serve as ingress for the traffic.
27+
* Back-end address pool – This pool is a collection of IP addresses associated with the virtual machine Network Interface Card (NIC) to which load is distributed.
28+
* Load-balancing rules – a rule property maps a given frontend IP and port combination to a set of back-end IP addresses and port combination. A single load balancer can have multiple load-balancing rules. Each rule is a combination of a frontend IP and port and back-end IP and port associated with VMs.
2929
* Probes – probes enable you to keep track of the health of VM instances. If a health probe fails, the VM instance is taken out of rotation automatically.
3030
* Inbound NAT rules – NAT rules defining the inbound traffic flowing through the frontend IP and distributed to the back-end IP.
3131

@@ -35,23 +35,33 @@ With Resource Manager, Azure Load Balancer contains the following child resource
3535

3636
Azure Resource Manager allows you to provision your applications using a declarative template. In a single template, you can deploy multiple services along with their dependencies. You use the same template to repeatedly deploy your application during every stage of the application lifecycle.
3737

38-
Templates can include definitions for Virtual Machines, Virtual Networks, Availability Sets, Network Interfaces (NICs), Storage Accounts, Load Balancers, Network Security Groups, and Public IPs. With templates, you can create everything you need for a complex application. The template file can be checked into content management system for version control and collaboration.
38+
Templates may include definitions for:
39+
* **Virtual machines**
40+
* **Virtual networks**
41+
* **Availability sets**
42+
* **Network interfaces (NICs)**
43+
* **Storage accounts**
44+
* **Load balancers**
45+
* **Network security groups**
46+
* **Public IPs.**
47+
48+
With templates, you can create everything you need for a complex application. The template file can be checked into content management system for version control and collaboration.
3949

4050
[Learn more about templates](../azure-resource-manager/resource-manager-template-walkthrough.md)
4151

4252
[Learn more about Network Resources](../networking/networking-overview.md)
4353

44-
For Quickstart templates using Azure Load Balancer, see the [GitHub repository](https://github.com/Azure/azure-quickstart-templates) that hosts a set of community generated templates.
54+
For Quickstart templates using Azure Load Balancer, see the [GitHub repository](https://github.com/Azure/azure-quickstart-templates) that hosts a set of community-generated templates.
4555

4656
Examples of templates:
4757

4858
* [2 VMs in a Load Balancer and load balancing rules](https://go.microsoft.com/fwlink/?LinkId=544799)
49-
* [2 VMs in a VNET with an Internal Load Balancer and Load Balancer rules](https://go.microsoft.com/fwlink/?LinkId=544800)
50-
* [2 VMs in a Load Balancer and configure NAT rules on the LB](https://go.microsoft.com/fwlink/?LinkId=544801)
59+
* [2 VMs in a VNET with an Internal Load Balancer and load balancer rules](https://go.microsoft.com/fwlink/?LinkId=544800)
60+
* [2 VMs in a load balancer and configure NAT rules on the LB](https://go.microsoft.com/fwlink/?LinkId=544801)
5161

5262
## Setting up Azure Load Balancer with a PowerShell or CLI
5363

54-
Get started with Azure Resource Manager cmdlets, command line tools, and REST APIs
64+
Get started with Azure Resource Manager cmdlets, command-line tools, and REST APIs
5565

5666
* [Azure Networking Cmdlets](https://docs.microsoft.com/powershell/module/az.network#networking) can be used to create a Load Balancer.
5767
* [How to create a load balancer using Azure Resource Manager](load-balancer-get-started-ilb-arm-ps.md)
@@ -60,6 +70,6 @@ Get started with Azure Resource Manager cmdlets, command line tools, and REST AP
6070

6171
## Next steps
6272

63-
You can also [get started creating an Internet facing load balancer](load-balancer-get-started-internet-arm-ps.md) and configure what type of [distribution mode](load-balancer-distribution-mode.md) for a specific load balancer network traffic behavior.
73+
[Get started creating an Internet facing load balancer](load-balancer-get-started-internet-arm-ps.md) and configure the type of [distribution mode](load-balancer-distribution-mode.md) for specific network traffic behavior.
6474

65-
Learn how to manage [idle TCP timeout settings for a load balancer](load-balancer-tcp-idle-timeout.md). This is important when your application needs to keep connections alive for servers behind a load balancer.
75+
Learn how to manage [idle TCP timeout settings for a load balancer](load-balancer-tcp-idle-timeout.md). These settings are important when your application needs to keep connections alive for servers behind a load balancer.

0 commit comments

Comments
 (0)