From 6d9293164126d0f3d64f2fd7ba826d4e80a90232 Mon Sep 17 00:00:00 2001 From: chakra146 <61271207+chakra146@users.noreply.github.com> Date: Thu, 18 Feb 2021 16:14:02 +0530 Subject: [PATCH] Update Add-AzLoadBalancerInboundNatPoolConfig.md with out using the Set-AzLoadBalancer after line 42 the natpool config will not be updated to the LB and the example would be incomplete. --- .../Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Network/Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md b/src/Network/Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md index 2f6af3576dc9..acc308dadc2b 100644 --- a/src/Network/Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md +++ b/src/Network/Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md @@ -40,6 +40,7 @@ The **Add-AzLoadBalancerInboundNatPoolConfig** cmdlet adds an inbound NAT pool t PS C:\> $slb = Get-AzLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" PS C:\> $feIpConfig = Get-AzLoadBalancerFrontendIpConfig -Name "FrontendName" -Loadbalancer $slb PS C:\> $slb | Add-AzLoadBalancerInboundNatPoolConfig -Name "myInboundNatPool" -Protocol TCP -FrontendIPConfigurationId $feIpConfig.Id -FrontendPortRangeStart 1001 -FrontendPortRangeEnd 2000 -BackendPort 1001 +PS C:\> $lb | Set-AzLoadBalancer ``` ## PARAMETERS