You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I setup akhq with azure entra id, the sso works fine and the user can logging, however mapping app roles from the entra app, to setup a proposer permissions is not working as expected / nor showing any logs that help me track the issue, can someone help me spot the issue? am i missing something?
/api/me
logged trueusername. "user@email.no"roles:
Based on my understanding the akhq will extract app roles from the jwt and then map it to a group:
groups:
- name: reader-test # this one is an app roles that should be injected in the jwt and akhq extract it from there
groups:
- topic-reader-test
here is the full config:
configuration:
akhq:
security:
enabled: trueroles:
topic-reader:
- resources: [ "TOPIC", "TOPIC_DATA" ]actions: [ "READ" ]
- resources: [ "TOPIC" ]actions: [ "READ_CONFIG" ]groups:
topic-reader-test:
- role: topic-readerpatterns: [ "test.*" ]no-roles: [] oidc:
enabled: trueproviders:
azure:
label: "Click here to Login with Azure"username-field: emailgroups-field: rolesdefault-group: topic-readergroups:
- name: reader-test # this one is an app roles that should be injected in the jwt and akhq extract it from theregroups:
- topic-reader-test server:
access-log:
enabled: truename: org.akhq.log.accessmicronaut:
security:
enabled: trueoauth2:
enabled: trueclients:
azure:
client-id: "<client-id>"client-secret: "<client-secret>"scopes:
- openid
- email
- profileopenid:
issuer: "https://login.microsoftonline.com/tenant-id/v2.0"
The text was updated successfully, but these errors were encountered:
I setup akhq with azure entra id, the sso works fine and the user can logging, however mapping app roles from the entra app, to setup a proposer permissions is not working as expected / nor showing any logs that help me track the issue, can someone help me spot the issue? am i missing something?
/api/me
Based on my understanding the akhq will extract app roles from the jwt and then map it to a group:
here is the full config:
The text was updated successfully, but these errors were encountered: