Skip to content

Instantly share code, notes, and snippets.

@lantrix
Created May 25, 2015 08:22
Show Gist options
  • Select an option

  • Save lantrix/c0878a78fad12fdd0c55 to your computer and use it in GitHub Desktop.

Select an option

Save lantrix/c0878a78fad12fdd0c55 to your computer and use it in GitHub Desktop.
Bulk Remove EC2 Tags (PowerShell)
(Get-EC2Tag -Filter @{name="tag:JANITOR_META"; Value="*"}).Count
$remove = Get-EC2Tag -Filter @{name="tag:JANITOR_META"; Value="*"}
Remove-EC2Tag -Resource $remove.ResourceId -Tag @{Key="JANITOR_META"} -Force
(Get-EC2Tag -Filter @{name="tag:JANITOR_META"; Value="*"}).Count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment