class AwsInventory::SecurityGroup::Summary

Public Instance Methods

data() click to toggle source
# File lib/aws_inventory/security_group/summary.rb, line 9
def data
  [
    ["Total", security_groups.size],
    ["Used", used_security_groups.size],
    ["Unused", unused_security_groups.size],
  ]
end
header() click to toggle source
# File lib/aws_inventory/security_group/summary.rb, line 5
def header
  ["Security Group", "Count"]
end