Created
January 16, 2022 03:35
-
-
Save mfcollins3/89d4187061be9df9dce6798ffa15bf57 to your computer and use it in GitHub Desktop.
login-NonInteractive technical profile
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
<TechnicalProfile Id="login-NonInteractive"> | |
<DisplayName>Local Account SignIn</DisplayName> | |
<Protocol Name="OpenIdConnect" /> | |
<Metadata> | |
<Item Key="ProviderName">https://sts.windows.net/</Item> | |
<Item Key="METADATA">https://login.microsoftonline.com/{tenant}/.well-known/openid-configuration</Item> | |
<Item Key="authorization_endpoint">https://login.microsoftonline.com/{tenant}/oauth2/token</Item> | |
<Item Key="response_types">id_token</Item> | |
<Item Key="response_mode">query</Item> | |
<Item Key="scope">email openid</Item> | |
<!-- <Item Key="grant_type">password</Item> --> | |
<!-- Policy Engine Clients --> | |
<Item Key="UsePolicyInRedirectUri">false</Item> | |
<Item Key="HttpBinding">POST</Item> | |
</Metadata> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="signInName" PartnerClaimType="username" Required="true" /> | |
<InputClaim ClaimTypeReferenceId="password" Required="true" /> | |
<InputClaim ClaimTypeReferenceId="grant_type" DefaultValue="password" AlwaysUseDefaultValue="true" /> | |
<InputClaim ClaimTypeReferenceId="scope" DefaultValue="openid" AlwaysUseDefaultValue="true" /> | |
<InputClaim ClaimTypeReferenceId="nca" PartnerClaimType="nca" DefaultValue="1" /> | |
</InputClaims> | |
<OutputClaims> | |
<OutputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="oid" /> | |
<OutputClaim ClaimTypeReferenceId="tenantId" PartnerClaimType="tid" /> | |
<OutputClaim ClaimTypeReferenceId="givenName" PartnerClaimType="given_name" /> | |
<OutputClaim ClaimTypeReferenceId="surName" PartnerClaimType="family_name" /> | |
<OutputClaim ClaimTypeReferenceId="displayName" PartnerClaimType="name" /> | |
<OutputClaim ClaimTypeReferenceId="userPrincipalName" PartnerClaimType="upn" /> | |
<OutputClaim ClaimTypeReferenceId="authenticationSource" DefaultValue="localAccountAuthentication" /> | |
</OutputClaims> | |
</TechnicalProfile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment