Skip to content

Instantly share code, notes, and snippets.

@mfcollins3
Created January 16, 2022 05:37
Show Gist options
  • Save mfcollins3/cc771a5433de2d47d25aa01c6d23873f to your computer and use it in GitHub Desktop.
Save mfcollins3/cc771a5433de2d47d25aa01c6d23873f to your computer and use it in GitHub Desktop.
SignUpOrSignIn Relying Party Policy
<RelyingParty>
<DefaultUserJourney ReferenceId="SignUpOrSignIn" />
<TechnicalProfile Id="PolicyProfile">
<DisplayName>PolicyProfile</DisplayName>
<Protocol Name="OpenIdConnect" />
<OutputClaims>
<OutputClaim ClaimTypeReferenceId="displayName" />
<OutputClaim ClaimTypeReferenceId="givenName" />
<OutputClaim ClaimTypeReferenceId="surname" />
<OutputClaim ClaimTypeReferenceId="email" />
<OutputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="sub"/>
<OutputClaim ClaimTypeReferenceId="tenantId" AlwaysUseDefaultValue="true" DefaultValue="{Policy:TenantObjectId}" />
</OutputClaims>
<SubjectNamingInfo ClaimType="sub" />
</TechnicalProfile>
</RelyingParty>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment