-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat(blueprint): add Entra runtime identity reference #7686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b8fa4ca
feat(blueprint): add Entra runtime identity reference
ericksoa 2669d3f
test(e2e): bind runtime identity fixtures in test.for
ericksoa 9dcc5f7
Merge remote-tracking branch 'origin/main' into 6871-entra-runtime-id…
ericksoa 2053f04
Merge remote-tracking branch 'origin/main' into 6871-entra-runtime-id…
ericksoa 7ea834f
fix(identity): close Entra review gaps
ericksoa 551d40e
docs(identity): clarify Entra acceptance context
ericksoa dba7dc4
Merge remote-tracking branch 'origin/main' into 6871-entra-runtime-id…
ericksoa e4f51cf
Merge remote-tracking branch 'origin/main' into 6871-entra-runtime-id…
ericksoa b7bb56e
Merge origin/main into 6871-entra-runtime-identity/ae
ericksoa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
49 changes: 49 additions & 0 deletions
49
nemoclaw-blueprint/provider-profiles/entra-runtime-v1.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Data-only reference for the experimental runtime identity contract. | ||
| # The direct runner validates this complete credential-delivery shape before | ||
| # import, including the Microsoft-controlled destinations, exact executable | ||
| # allowlist, and Graph /v1.0/me endpoint rule. OpenShell owns refresh-token | ||
| # custody, access-token rotation, sandbox placeholders, and post-policy | ||
| # injection. Copy this file and replace "organizations" in the token URL with | ||
| # the Microsoft Entra tenant ID used by the delegated application. | ||
| id: entra-runtime-v1 | ||
| display_name: Microsoft Entra Runtime Credentials v1 | ||
| description: Gateway-managed Microsoft Graph access-token refresh for an attached sandbox | ||
| category: agent | ||
| credentials: | ||
| - name: ENTRA_ACCESS_TOKEN | ||
| description: Short-lived delegated Microsoft Graph access token | ||
| env_vars: | ||
| - ENTRA_ACCESS_TOKEN | ||
| required: true | ||
| auth_style: bearer | ||
| header_name: authorization | ||
| refresh: | ||
| strategy: oauth2_refresh_token | ||
| token_url: https://login.microsoftonline.com/organizations/oauth2/v2.0/token | ||
| refresh_before_seconds: 300 | ||
| max_lifetime_seconds: 3600 | ||
| material: | ||
| - name: client_id | ||
| required: true | ||
| - name: refresh_token | ||
| required: true | ||
| secret: true | ||
| - name: client_secret | ||
| required: false | ||
| secret: true | ||
| endpoints: | ||
| - host: graph.microsoft.com | ||
| port: 443 | ||
| protocol: rest | ||
| enforcement: enforce | ||
| rules: | ||
| - allow: { method: GET, path: "/v1.0/me" } | ||
| binaries: | ||
| - /usr/local/bin/node | ||
| - /usr/bin/node | ||
| - /usr/local/bin/curl | ||
| - /usr/bin/curl | ||
| inference_capable: false |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.