Problem statement: I want to authenticate vault user with okta (oidc), but want to have one more level of authentication at vault level.
I have successfully integrated okta_group with vault group (external) and settings up policies for that group.
I work fine as excepted.
My current oidc cofig -
vault write auth/oidc/role/default \
bound_audiences="XXXX" \
allowed_redirect_uris="http://localhost:8200/ui/vault/auth/oidc/oidc/callback" \
user_claim="sub" \
policies="default" \
groups_claim="groups" \
oidc_scopes="groups"
When user logged in, Vault create entity but it does not contain any metadata like (usernanem, email ) and so on. What settings can I use to get more details in oidc config ??