Deploying the ARM Template using the Powershell, need to fetch the previous AVD Session host number from Azure Portal and from which we can pass the next incremental value in the ARM template by declaring a variable.
#Login-AzAccount
$vminitialnumber= Get-AzWvdSessionHost -HostPoolName infosyswvd -ResourceGroupName avd
New-AzResourceGroupDeployment `
-ResourceGroupName AVD `
-TemplateFile 'D:\Updated-AVD\East US\Template.json' `
-TemplateParameterFile 'D:\Updated-AVD\East US\Parameters.json'