Skip to content

Instantly share code, notes, and snippets.

@isjwuk
Created February 8, 2022 20:19
Show Gist options
  • Save isjwuk/67e9bb67bd489e424973c5836ab5595d to your computer and use it in GitHub Desktop.
Save isjwuk/67e9bb67bd489e424973c5836ab5595d to your computer and use it in GitHub Desktop.
Set a default location for Azure Resource Groups
#Set the default location for new resource groups.
$PSDefaultParameterValues.Add("New-AzResourceGroup:Location","uksouth")
#Create a Resource Group without specifying the location parameter
New-AZResourceGroup -Name "test-rsg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment