You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
4
4
services: load-balancer
5
5
documentationcenter: na
6
6
author: asudbring
@@ -9,11 +9,11 @@ ms.devlang: na
9
9
ms.topic: article
10
10
ms.tgt_pltfrm: na
11
11
ms.workload: infrastructure-services
12
-
ms.date: 09/25/2017
12
+
ms.date: 11/19/2019
13
13
ms.author: allensu
14
14
---
15
15
16
-
# Using Azure Resource Manager Support with Azure Load Balancer
16
+
# Azure Resource Manager Support with Azure Load Balancer
17
17
18
18
19
19
@@ -23,9 +23,9 @@ Azure Resource Manager is the preferred management framework for services in Azu
23
23
24
24
With Resource Manager, Azure Load Balancer contains the following child resources:
25
25
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
-
* Loadbalancing 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 loadbalancing 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.
29
29
* 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.
30
30
* Inbound NAT rules – NAT rules defining the inbound traffic flowing through the frontend IP and distributed to the back-end IP.
31
31
@@ -35,23 +35,33 @@ With Resource Manager, Azure Load Balancer contains the following child resource
35
35
36
36
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.
37
37
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.
39
49
40
50
[Learn more about templates](../azure-resource-manager/resource-manager-template-walkthrough.md)
41
51
42
52
[Learn more about Network Resources](../networking/networking-overview.md)
43
53
44
-
For Quickstart templates using Azure Load Balancer, see the [GitHub repository](https://github.com/Azure/azure-quickstart-templates) that hosts a set of communitygenerated 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.
45
55
46
56
Examples of templates:
47
57
48
58
*[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)
51
61
52
62
## Setting up Azure Load Balancer with a PowerShell or CLI
53
63
54
-
Get started with Azure Resource Manager cmdlets, commandline tools, and REST APIs
64
+
Get started with Azure Resource Manager cmdlets, command-line tools, and REST APIs
55
65
56
66
*[Azure Networking Cmdlets](https://docs.microsoft.com/powershell/module/az.network#networking) can be used to create a Load Balancer.
57
67
*[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
60
70
61
71
## Next steps
62
72
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.
64
74
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