jckuester / awsweeper

A tool for cleaning your AWS account
Mozilla Public License 2.0
468 stars 45 forks source link

Sweep all regions #44

Open cloudlena opened 4 years ago

cloudlena commented 4 years ago

It would be nice if I could specify all available regions to be swept. An example might be:

$ awsweep --region all config.yml
jckuester commented 4 years ago

This is really useful and I have wanted to implemented it for some time, but haven't found time yet. But it's definitely the next feature to come.

kadaan commented 2 years ago

@jckuester A very simple fix is to change the region parameter to:

flags.StringSliceVarP(&regions, "regions", "r", []string{}, "The regions to delete resources in")

At least then the caller can pass in all regions then care about. A small bash script can handle the concept of ALL

ddvdozuki commented 2 years ago

Any update to this?