class AwsInventory::SecurityGroup

Public Instance Methods

report() click to toggle source

Default is the open report because it seems like the most useful report

# File lib/aws_inventory/security_group.rb, line 8
def report
  Summary.new(@options).report if show(:summary)
  Open.new(@options).report if show(:open)
  Unused.new(@options).report if show(:unused)
end