MicrosoftDocs / azure-docs

Open source documentation of Microsoft Azure
https://docs.microsoft.com/azure
Creative Commons Attribution 4.0 International
10.26k stars 21.43k forks source link

Could you fix typo? #5188

Closed CeciAc closed 6 years ago

CeciAc commented 6 years ago

@tkato-2018 commented on Thu Feb 22 2018

Typo

@RuleName = "Capture UPN when AccountType is User and issue the IssuerID" c1:[ Type == "http://schemas.xmlsoap.org/claims/UPN" ] && c2:[ Type == "http://schemas.microsoft.com/ws/2012/01/accounttype", Value == "User" ] => issue( Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = regexreplace( c1.Value, ".+@(?.+)", "http://${domain}/adfs/services/trust/" ★ ) );

@RuleName = "Issue issuerID for domain-joined computers" c:[ Type == "http://schemas.microsoft.com/ws/2008/06/identity/claims/groupsid", Value =~ "-515$", Issuer =~ "^(AD AUTHORITY|SELF AUTHORITY|LOCAL AUTHORITY)$" ] => issue( Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = "http:///adfs/services/trust/" ★ );

Correct

@RuleName = "Capture UPN when AccountType is User and issue the IssuerID" c1:[ Type == "http://schemas.xmlsoap.org/claims/UPN" ] && c2:[ Type == "http://schemas.microsoft.com/ws/2012/01/accounttype", Value == "User" ] => issue( Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = regexreplace( c1.Value, ".+@(?.+)", "http://${domain}/adfs/services/trust" ★ ) );

@RuleName = "Issue issuerID for domain-joined computers" c:[ Type == "http://schemas.microsoft.com/ws/2008/06/identity/claims/groupsid", Value =~ "-515$", Issuer =~ "^(AD AUTHORITY|SELF AUTHORITY|LOCAL AUTHORITY)$" ] => issue( Type = "http://schemas.microsoft.com/ws/2008/06/identity/claims/issuerid", Value = "http:///adfs/services/trust" ★ );

AdamS-MSFT commented 6 years ago

@CeciAc Thanks for the feedback. I assigned the issue for further investigation.

AdamS-MSFT commented 6 years ago

@CeciAc Could you provide which specific document/link or repos you found the typos in ?