docs(spec): BicepSettings AzureWI + AwsIrsa runtime completion (fast-follow design note) - #12511
Open
sylvainsf wants to merge 2 commits into
Open
docs(spec): BicepSettings AzureWI + AwsIrsa runtime completion (fast-follow design note)#12511sylvainsf wants to merge 2 commits into
sylvainsf wants to merge 2 commits into
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a design note describing the fast-follow runtime work needed to make Radius.Core/bicepSettings identity-based registry auth (AzureWI, AwsIrsa) effective during Bicep recipe execution (today only BasicAuth is wired end-to-end).
Changes:
- Adds a design note outlining the current runtime gap (bridge/driver only handling
basicAuthSecretId) and the desired end state. - Proposes runtime shape changes and method-aware behavior for secret prefetch (
FindSecretIDs) and auth payload construction. - Describes a unit + functional testing plan and acceptance criteria for all three auth methods.
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
Comments suppressed due to low confidence (1)
eng/design-notes/recipes/2026-07-bicep-settings-identity-auth-fast-follow.md:14
- The linked architecture doc path is incorrect;
docs/architecture/terraform-bicep-config.mddoes not exist in this repo (the current doc isterraform-bicep-settings.md). This link will be broken for readers and makes the reference to the limitations section harder to validate.
The checked-in architecture document ([docs/architecture/terraform-bicep-config.md](../../../docs/architecture/terraform-bicep-config.md), §Status and known limitations) already calls out this limitation as a follow-up. API validation accepts identity methods, but the environment-to-driver bridge currently only forwards entries containing `basicAuthSecretId`, which makes `AzureWI` and `AwsIrsa` no-ops at runtime.
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.
Summary
Design note for the fast-follow work tracked in the terraform-bicep-config architecture doc.
Radius.Core/bicepSettings accepts BasicAuth, AzureWI, AwsIrsa in schema but only BasicAuth is wired at runtime. This spec covers completing AzureWI and AwsIrsa execution support.
What is in this PR
Related