Created
January 21, 2022 04:54
-
-
Save mfcollins3/1985d1bb600dbcd4b2b0e4c44e8cfa3b to your computer and use it in GitHub Desktop.
Sign Up Relying Party Policy for B2C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<RelyingParty> | |
<DefaultUserJourney ReferenceId="SignUp" /> | |
<UserJourneyBehaviors> | |
<JourneyInsights | |
TelemetryEngine="ApplicationInsights" | |
InstrumentationKey="PUT-YOUR-INSTUMENTATION-KEY-HERE" | |
DeveloperMode="true" | |
ClientEnabled="true" | |
ServerEnabled="true" | |
TelemetryVersion="1.0.0" /> | |
</UserJourneyBehaviors> | |
<TechnicalProfile Id="PolicyProfile"> | |
<DisplayName>Sign Up</DisplayName> | |
<Description>Allows new users to sign up and create an account</Description> | |
<Protocol Name="OpenIdConnect" /> | |
<InputClaims></InputClaims> | |
<OutputClaims> | |
<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