Save the preceding content into a Bicep file called inlineScript.bicep, and use the following PowerShell script to deploy the Bicep file.
$resourceGroupName =Read-Host-Prompt "Enter the name of the resource group to be created"$location =Read-Host-Prompt "Enter the location (i.e. centralus)"New-AzResourceGroup-Name $resourceGroupName -Location $locationNew-AzResourceGroupDeployment-ResourceGroupName $resourceGroupName -TemplateFile "inlineScript.bicep"Write-Host"Press [ENTER] to continue ..."