Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active April 24, 2016 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/658e3b0ccbe0e68d41bfc112ab2e12c0 to your computer and use it in GitHub Desktop.
Save justinyoo/658e3b0ccbe0e68d41bfc112ab2e12c0 to your computer and use it in GitHub Desktop.
Azure DevOps Series
$ResourceGroupName = "my-resource-group"
$ResourceGroupLocation = "Australia Southeast"
# Creates resource group.
Write-Host "Creating Azure Resource Group..."
New-AzureRmResourceGroup -Name $ResourceGroupName -Location $ResourceGroupLocation -Force
Write-Host "Azure Resource Group $ResourceGroupName in $ResourceGroupLocation created." -ForegroundColor Green
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment