Created
July 9, 2020 16:49
-
-
Save stepbester/17ed8f47a3f10e76ba87a551da6784aa to your computer and use it in GitHub Desktop.
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
<TechnicalProfile Id="PolicyProfile"> | |
<DisplayName>PolicyProfile</DisplayName> | |
<Protocol Name="OpenIdConnect" /> | |
<InputTokenFormat>JWT</InputTokenFormat> | |
<CryptographicKeys> | |
<Key Id="client_secret" StorageReferenceId="your-policy-key" /> | |
</CryptographicKeys> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="extension_YourClaim" /> | |
</InputClaims> | |
<OutputClaims> | |
<!-- ... --> | |
</OutputClaims> | |
<SubjectNamingInfo ClaimType="oid" /> | |
</TechnicalProfile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment