Update Standard Logic App templates (June18)#144
Merged
himanshusainig merged 1 commit intoJun 23, 2026
Conversation
## Changes Updates the Standard Logic App workflow definitions and parameters. ### Files modified | File | Change | |------|--------| | `StandardLogicApp/Orchestrator_Parameters.json` | Updated | | `StandardLogicApp/Orchestrator_Workflow.json` | Updated | | `StandardLogicApp/SCIMTests_Workflow.json` | Updated | | `StandardLogicApp/VERSION` | Bumped 5.0 → 6.0 | ### VERSION bump Workflow JSON files changed → auto-bumped VERSION from **5.0** to **6.0**. ### Notes - All JSON files validated (valid syntax, correct schema) - CRLF normalized to LF - Action counts unchanged (Orchestrator: 23, SCIMTests: 5) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
@microsoft-github-policy-service agree company="Microsoft" |
himanshusainig
requested changes
Jun 22, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds the Federated Identity Test ( Federated_Identity_Test ) to the SCIM Logic App validation template, enabling end-to-end validation of Workload Identity Federation authentication flows.
Changes
Orchestrator_Parameters.json :
• Added Federated_Identity_Test to the EnabledTests list.
• Added 7 new federated identity parameters:
federatedEntraTenantId,federatedApplicationId,federatedApplicationClientSecret,federatedTokenEndpoint,federatedClientId,federatedBaseAddress,federatedAudience— with placeholder values and metadata descriptions.Orchestrator_Workflow.json :
• Added
federatedIdentityTestEnabledflag to the test-enablement compose step.• Added
federatedIdentityTestResultto the test-results aggregation.• Included
FederatedIdentityTestOutputsin the overallLogicAppResult pass/fail evaluation.• Added
Federated_Identity_Testentry toFinal_TestResultswith result, error details, recommendation URL, and run link.SCIMTests_Workflow.json :
• Implemented the full Federated_Identity_Test action with two authentication paths:
• RFC-7523 (default): Acquires an Entra token via client credentials, then exchanges it at the ISV's federated token endpoint using a JWT bearer assertion ( client_credentials grant with client_assertion ).
• RFC-8693 (Google SA flow): Detects Google service account endpoints, performs a 3-step token exchange (Entra → Google STS token exchange → Google SA impersonation) before calling the ISV's SCIM endpoint.
• Both paths validate the final access token by making a GET request to the ISV's SCIM /Users endpoint and checking for a 2xx response.
• Includes comprehensive error handling with detailed error output at each step (Entra token, STS exchange, SA token, ISV token, SCIM call).
• Added
FederatedIdentityTestOutputsto the workflow's local variables with SKIPPED defaults.VERSION :
• Bumped from 5.0 to 6.0 .