The ACL tab currently filters ACLs by "User" principle type, which prevents viewing ACLs based on other types like SPIFFE. The user requests either removing this filter, allowing users to select different principle types (e.g., "All"), or making "User" the default with an option to change.
i'm using redpanda console to view the acls on my kafka cluster. However, the acltab filters the list of ACLs based on principle type User, but we use ACLs based on SPIFFE, and the principle then starts with SPIFFE and not USER. Why limit to ACLS of principleType USER, while other principle types also exist on kafka. Remove the filter or let the user be able to filter on principle type, perhaps default User, but the option to select all in the bowser should also be possible In the ACL view on a topic, there is no filtering on principle type and the ACLs based on SPIFFE are shown. Line of code that filters for Principle type USER https://github.com/redpanda-data/console/blob/82547b42df8d5141814e0a0013c3bebcf63eb974/frontend/src/components/pages/acls/Acl.List.tsx#L584 Is it possible to change this behavior of filtering on principleType User?