Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 388 Bytes

File metadata and controls

24 lines (17 loc) · 388 Bytes

Cleanup

Deleting the Azure resource group should remove everything associated with this hackaton.

Azure CLI using Bash
az group delete -g $resourceGroup --no-wait -y
PowerShell
Remove-AzResourceGroup -Name $resourceGroup -Force -AsJob