-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CP4AIOPS-3113 pass delimiter for groups #1155
base: master
Are you sure you want to change the base?
Conversation
f905bad
to
aa1ad9b
Compare
update:
|
855734b
to
3e17b6e
Compare
RequestHeader set X_REMOTE_USER_FIRSTNAME %%{OIDC_CLAIM_GIVEN_NAME}e env=OIDC_CLAIM_GIVEN_NAME | ||
RequestHeader set X_REMOTE_USER_LASTNAME %%{OIDC_CLAIM_FAMILY_NAME}e env=OIDC_CLAIM_FAMILY_NAME | ||
RequestHeader set X_REMOTE_USER_FULLNAME %%{OIDC_CLAIM_NAME}e env=OIDC_CLAIM_NAME | ||
RequestHeader set X_REMOTE_USER_GROUP_DELIMITER "," |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor, but in the other PR, this entry came after X_REMOTE_USER_GROUPS
MellonMergeEnvVars On brings back all groups for REMOTE_USER_GROUPS By default, the delimiter is ;, but this can be overridden This is a no-op, but it highlights that a semicolon is used to join groups. Liberty (via oidc) is using a comma, but that is not displayed here. LookupUserGroups specifies a ":"
update:
|
Checked commits kbrock/manageiq-pods@b9b68cd~...5104e9e with ruby 3.1.5, rubocop 1.56.3, haml-lint 0.51.0, and yamllint |
1 similar comment
Checked commits kbrock/manageiq-pods@b9b68cd~...5104e9e with ruby 3.1.5, rubocop 1.56.3, haml-lint 0.51.0, and yamllint |
The receiving end (ruby code) will use this delimiter to separate classes. Since the various components use different delimiters, it is easiest to configure this in one place and pass it around
see also ManageIQ/manageiq#23139