@@ -33,9 +33,9 @@ func init() {
33
33
listCmd .PersistentFlags ().BoolVarP (& extendedInfo , "extended-info" , "e" , false , "include additional information about roles such as associated apps" )
34
34
listCmd .PersistentFlags ().BoolVarP (& shortInfo , "short-info" , "s" , false , "only display the role ARNs" )
35
35
listCmd .PersistentFlags ().StringVarP (& accountFilter , "account" , "a" , "" , "filter by aws account number or account name" )
36
- listCmd .PersistentFlags ().BoolVar (& showAll , "all" , true , "show user profiles as well as instance profiles " )
37
- listCmd .PersistentFlags ().BoolVar (& showInstanceProfilesOnly , "instance" , false , "show only instance roles" )
38
- listCmd .PersistentFlags ().BoolVar (& showConfiguredProfilesOnly , "profiles" , false , "show only configured roles" )
36
+ listCmd .PersistentFlags ().BoolVarP (& showAll , "all" , "A" , true , "show all available roles (default option) " )
37
+ listCmd .PersistentFlags ().BoolVarP (& showInstanceProfilesOnly , "instance" , "i " , false , "show only instance roles" )
38
+ listCmd .PersistentFlags ().BoolVarP (& showConfiguredProfilesOnly , "profiles" , "p " , false , "show only configured roles" )
39
39
rootCmd .AddCommand (listCmd )
40
40
}
41
41
0 commit comments