-
-
Save justinyoo/658e3b0ccbe0e68d41bfc112ab2e12c0 to your computer and use it in GitHub Desktop.
Azure DevOps Series
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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