Hi I would like to allow anyone to access the a topic even for authenticated user, I assume following ACLs should be sufficient.
Current ACLs for resource `ResourcePattern(resourceType=TOPIC, name=test3, patternType=LITERAL)`: (principal=User:ANONYMOUS, host=*, operation=ALL, permissionType=ALLOW) It works for unauthenticated user, But I got "Not authorized to access topics: [test3]" error for an authenticated User alice, I have to add specific new rule for User:alice as following in order to get rid of the error: Current ACLs for resource `ResourcePattern(resourceType=TOPIC, name=test3, patternType=LITERAL)`: (principal=User:ANONYMOUS, host=*, operation=ALL, permissionType=ALLOW) (principal=User:alice, host=*, operation=ALL, permissionType=ALLOW) //new rule My be the ALCs is not correct. please let me know if you have any suggestion. Thanks Jun