class AwsInventory::Iam

Public Instance Methods

report() click to toggle source

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

# File lib/aws_inventory/iam.rb, line 8
def report
  Summary.new(@options).report if show(:summary)
  User.new(@options).report if show(:users)
  Group.new(@options).report if show(:groups)
end