Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created January 26, 2018 11:29
Show Gist options
  • Save goyalmohit/4a568ff0965c273bebbfd241a2b02af8 to your computer and use it in GitHub Desktop.
Save goyalmohit/4a568ff0965c273bebbfd241a2b02af8 to your computer and use it in GitHub Desktop.
Create an azure resource Group
# Creates an azure resource group
$resourceGroupName = "mobiNotify-rg"
$locationName = "east us"
New-AzureRmResourceGroup -Name $resourceGroupName -Location $locationName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment