Skip to content

Instantly share code, notes, and snippets.

@megian
Last active September 28, 2023 16:19
Show Gist options
  • Save megian/bce2f7dc650e04d3ee2e36fd168d82a3 to your computer and use it in GitHub Desktop.
Save megian/bce2f7dc650e04d3ee2e36fd168d82a3 to your computer and use it in GitHub Desktop.
// scopes: openid,email,profile,groups
local claims = std.extVar('claims');
{
identity: {
traits: {
email: claims.email,
first_name: claims.given_name,
last_name: claims.family_name,
idp_groups: claims.groups,
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment