arn:aws:iam::12345678901:role/Role2-Role2,"Alexa for Business"
arn:aws:iam::11111111111:role/ADFS-MyRoleName,"Alexa for Business"
Is that really what you wanted? Your original post stated
"I would like to create a hashmap so I can count the # of items under each of the 'arn'"
- Your split() call is throwing away everything but the first line in each section. If you want all remaining lines, use the third argument of split: my ($key, $data) = split(/\n/, $line, 1).
- Calling your results hash by the same name you call the value to be added to it, is unnecessary complication of your life, even if Perl can handle it.
If what you want is what you said you want, I would use:
use strict;
use warnings;
use feature 'say';
use List::Util 'max';
my %count;
local $/ = "arn:aws:iam::";
while (my $line = <DATA>) {
chomp $line;
$line =~ s!$/!! if $. == 1;
next if $line eq '';
my ($key, @values) = split(/\n/, $line);
$count{$key} = scalar @values;
}
my @keys = keys %count;
my $longest = max map { length } @keys;
for my $key (sort @keys) {
say sprintf("%-${longest}s : %3d", $key, $count{$key});
}
__DATA__
arn:aws:iam::11111111111:role/ADFS-MyRoleName
"Alexa for Business"
"AWS Certificate Manager"
"AWS Certificate Manager Private Certificate Authority"
"AWS Amplify"
"Manage - Amazon API Gateway"
"AWS App Mesh"
"Amazon AppStream 2.0"
"AWS AppSync"
"Amazon Athena"
"AWS Auto Scaling"
arn:aws:iam::12345678901:role/Role2-Role2
"Alexa for Business"
"AWS Certificate Manager"
"AWS Certificate Manager Private Certificate Authority"
"AWS Amplify"
"Manage - Amazon API Gateway"
"Application Auto Scaling"
"AWS App Mesh"
"Amazon AppStream 2.0"
"AWS AppSync"
Output:
11111111111:role/ADFS-MyRoleName : 10
12345678901:role/Role2-Role2 : 9
Hope this helps!
The way forward always starts with a minimal test.
|