Skip to content

Commit 0c44ffe

Browse files
authored
Merge pull request #57789 from KumudD/lbpsupdate1102
Fixed typo - Load Balancer PowerShell quickstart
2 parents 5ac8a1e + 38f8221 commit 0c44ffe

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

articles/load-balancer/quickstart-create-basic-load-balancer-powershell.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ description: This quickstart shows how to create a Basic Load Balancer using Pow
44
services: load-balancer
55
documentationcenter: na
66
author: KumudD
7-
manager: jeconnoc
8-
tags: azure-resource-manager
97
Customer intent: I want to create a Basic Load balancer so that I can load balance internet traffic to VMs.
108
ms.assetid:
119
ms.service: load-balancer
1210
ms.devlang: na
13-
ms.topic: get-started-article
11+
ms.topic: quickstart
1412
ms.tgt_pltfrm: na
1513
ms.workload: infrastructure-services
1614
ms.date: 04/20/2018
@@ -194,10 +192,10 @@ $rule2 = New-AzureRmNetworkSecurityRuleConfig `
194192
Create a network security group with [New-AzureRmNetworkSecurityGroup](/powershell/module/azurerm.network/new-azurermnetworksecuritygroup).
195193

196194
```azurepowershell-interactive
197-
$nsg = New-AzureRmNetworkSecurityGroup`
195+
$nsg = New-AzureRmNetworkSecurityGroup `
198196
-ResourceGroupName 'myResourceGroupLB' `
199197
-Location 'EastUS' `
200-
-Name 'myNetworkSecurityGroup'`
198+
-Name 'myNetworkSecurityGroup' `
201199
-SecurityRules $rule1,$rule2
202200
```
203201

articles/load-balancer/quickstart-create-standard-load-balancer-powershell.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ description: This quickstart shows how to create a Standard Load Balancer using
44
services: load-balancer
55
documentationcenter: na
66
author: KumudD
7-
manager: jeconnoc
8-
tags: azure-resource-manager
97
Customer intent: I want to create a Standard Load balancer so that I can load balance internet traffic to VMs.
108
ms.assetid:
119
ms.service: load-balancer
1210
ms.devlang: na
13-
ms.topic: get-started-article
11+
ms.topic: qucikstart
1412
ms.tgt_pltfrm: na
1513
ms.workload: infrastructure-services
1614
ms.date: 08/22/2018
@@ -197,10 +195,10 @@ $rule2 = New-AzureRmNetworkSecurityRuleConfig `
197195
Create a network security group with [New-AzureRmNetworkSecurityGroup](/powershell/module/azurerm.network/new-azurermnetworksecuritygroup).
198196

199197
```azurepowershell-interactive
200-
$nsg = New-AzureRmNetworkSecurityGroup`
198+
$nsg = New-AzureRmNetworkSecurityGroup `
201199
-ResourceGroupName 'myResourceGroupLB' `
202200
-Location 'EastUS' `
203-
-Name 'myNetworkSecurityGroup'`
201+
-Name 'myNetworkSecurityGroup' `
204202
-SecurityRules $rule1,$rule2
205203
```
206204

0 commit comments

Comments
 (0)