This file contains 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
<UserJourneys> | |
<UserJourney Id="LogIn"> | |
<OrchestrationSteps> | |
<OrchestrationStep Order="1" Type="ClaimsExchange"> | |
<ClaimsExchanges> | |
<ClaimsExchange Id="ShowLogInForm" TechnicalProfileReferenceId="ShowLogInForm" /> | |
</ClaimsExchanges> | |
</OrchestrationStep> | |
<OrchestrationStep Order="2" Type="SendClaims" CpimIssuerTechnicalProfileReferenceId="JWTIssuer" /> | |
</OrchestrationSteps> |
This file contains 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="LogIn" /> | |
<UserJourneyBehaviors> | |
<JourneyInsights | |
TelemetryEngine="ApplicationInsights" | |
InstrumentationKey="7c25e293-8d7e-46c8-9e84-39400c53f1fb" | |
DeveloperMode="true" | |
ClientEnabled="true" | |
ServerEnabled="true" | |
TelemetryVersion="1.0.0" /> |
This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<TrustFrameworkPolicy | |
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06" | |
PolicySchemaVersion="0.3.0.0" | |
TenantId="projectcenterdev.onmicrosoft.com" | |
PolicyId="B2C_1A_LogIn" | |
PublicPolicyUri="http://projectcenterdev.onmicrosoft.com/B2C_1A_LogIn" | |
DeploymentMode="Development" | |
UserJourneyRecorderEndpoint="urn:journeyrecorder:applicationinsights"> | |
<BasePolicy> |
This file contains 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
<TrustFrameworkPolicy | |
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06" | |
PolicySchemaVersion="0.3.0.0" | |
TenantId="projectcenterdev.onmicrosoft.com" | |
PolicyId="B2C_1A_SignUp" | |
PublicPolicyUri="http://projectcenterdev.onmicrosoft.com/B2C_1A_SignUp" | |
DeploymentMode="Development" | |
UserJourneyRecorderEndpoint="urn:journeyrecorder:applicationinsights"> | |
<BasePolicy> | |
<TenantId>projectcenterdev.onmicrosoft.com</TenantId> |
This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<TrustFrameworkPolicy | |
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06" | |
PolicySchemaVersion="0.3.0.0" | |
TenantId="projectcenterdev.onmicrosoft.com" | |
PolicyId="B2C_1A_Base" | |
PublicPolicyUri="http://projectcenterdev.onmicrosoft.com/B2C_1A_Base"> | |
</TrustFrameworkPolicy> |
This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<TrustFrameworkPolicy | |
xmlns="http://schemas.microsoft.com/online/cpim/schemas/2013/06" | |
PolicySchemaVersion="0.3.0.0" | |
TenantId="projectcenterdev.onmicrosoft.com" | |
PolicyId="B2C_1A_SignUp" | |
PublicPolicyUri="http://projectcenterdev.onmicrosoft.com/B2C_1A_SignUp" | |
DeploymentMode="Development" | |
UserJourneyRecorderEndpoint="urn:journeyrecorder:applicationinsights"> | |
<BuildingBlocks> |
This file contains 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
<ClaimsProvider> | |
<DisplayName>Token Issuers</DisplayName> | |
<TechnicalProfiles> | |
<TechnicalProfile Id="JWTIssuer"> | |
<DisplayName>JWT Issuer</DisplayName> | |
<Description>Generates and issues the JSON web token containing the user's identity information</Description> | |
<Protocol Name="OpenIdConnect" /> | |
<OutputTokenFormat>JWT</OutputTokenFormat> | |
<Metadata> | |
<Item Key="issuer_refresh_token_user_identity_claim_type">objectId</Item> |
This file contains 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
<BuildingBlocks> | |
<ClaimsTransformations> | |
<ClaimsTransformation Id="SetDisplayNameToSignInName" TransformationMethod="CopyClaim"> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="signInName" TransformationClaimType="inputClaim" /> | |
</InputClaims> | |
<OutputClaims> | |
<OutputClaim ClaimTypeReferenceId="displayName" TransformationClaimType="outputClaim" /> | |
</OutputClaims> | |
</ClaimsTransformation> |
This file contains 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
<ClaimsProvider> | |
<DisplayName>Active Directory</DisplayName> | |
<TechnicalProfiles> | |
<TechnicalProfile Id="CreateLocalUser"> | |
<DisplayName>Create Local User Account</DisplayName> | |
<Description>Creates the local user account in Active Directory</Description> | |
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.AzureActiveDirectoryProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> | |
<Metadata> | |
<Item Key="Operation">Write</Item> | |
<Item Key="RaiseErrorIfClaimsPrincipalAlreadyExists">true</Item> |
This file contains 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
<BuildingBlocks> | |
<ClaimsSchema> | |
<ClaimType Id="signInName"> | |
<DisplayName>Username</DisplayName> | |
<DataType>string</DataType> | |
<UserHelpText>Username</UserHelpText> | |
<UserInputType>TextBox</UserInputType> | |
</ClaimType> | |
<ClaimType Id="newPassword"> |
NewerOlder