Advertisement
RJSN

Remove all resources from Subscription

Dec 30th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @"
  2. {
  3.  "`$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  4.   "contentVersion": "1.0.0.0",
  5.   "parameters": {},
  6.   "variables": {},
  7.   "resources": [],
  8.   "outputs": {}
  9. }
  10. "@ > $env:TEMP\ResourceGroupCleanup.template.json
  11.  
  12. foreach ($item in (Get-AzureRmResourceGroup))
  13. {
  14.    $name = $item.ResourceGroupName
  15.    New-AzureRmResourceGroupDeployment -ResourceGroupName $name -Mode Complete -TemplateFile $env:TEMP\ResourceGroupCleanup.template.json -Force -Verbose
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement