Hey All,
While creating an ILB here's the code that I'm using
$VnSN = Get-AzureRmVirtualNetwork | where {$_.name -eq "SQLSrvNET"} | get-AzureRmVirtualNetworkSubnetConfig $frIP = New-AzureRmLoadBalancerFrontendIpConfig -Name LBFE -PrivateIpAddress a.b.c.d -SubnetId $VnSN[0].Id New-AzureRmLoadBalancer -Name PSHILB -ResourceGroupName ARGmultiAO -Location "Central US" -FrontendIpConfiguration $frIP
My intention is to identify & provide an IP address in Line[2].
Any help on that?
yup