diff --git a/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/README.md b/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/README.md index a2b28e69784b..a60c167da64a 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/README.md +++ b/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/README.md @@ -149,6 +149,7 @@ user with administrative privileges. -e NIFI_REGISTRY_SECURITY_USER_OIDC_PREFERRED_JWSALGORITHM=RS256 \ -e NIFI_REGISTRY_SECURITY_USER_OIDC_ADDITIONAL_SCOPES=profile \ -e NIFI_REGISTRY_SECURITY_USER_OIDC_CLAIM_IDENTIFYING_USER=preferred_username \ + -e NIFI_REGISTRY_SECURITY_USER_OIDC_CLAIM_GROUPS=groups \ -d \ apache/nifi-registry:latest diff --git a/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/sh/update_oidc_properties.sh b/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/sh/update_oidc_properties.sh index d1ddff7f949f..f6045e118cfc 100644 --- a/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/sh/update_oidc_properties.sh +++ b/nifi-registry/nifi-registry-core/nifi-registry-docker/dockerhub/sh/update_oidc_properties.sh @@ -23,3 +23,4 @@ prop_replace 'nifi.registry.security.user.oidc.client.secret' prop_replace 'nifi.registry.security.user.oidc.preferred.jwsalgorithm' "${NIFI_REGISTRY_SECURITY_USER_OIDC_PREFERRED_JWSALGORITHM}" prop_replace 'nifi.registry.security.user.oidc.additional.scopes' "${NIFI_REGISTRY_SECURITY_USER_OIDC_ADDITIONAL_SCOPES}" prop_replace 'nifi.registry.security.user.oidc.claim.identifying.user' "${NIFI_REGISTRY_SECURITY_USER_OIDC_CLAIM_IDENTIFYING_USER}" +prop_replace 'nifi.registry.security.user.oidc.claim.groups' "${NIFI_REGISTRY_SECURITY_USER_OIDC_CLAIM_GROUPS}"