Set Unauthenticated as the authentication provider in the default Docker image config#3248
Merged
souvikghosh04 merged 4 commits intomainfrom Mar 13, 2026
Merged
Conversation
…json Co-authored-by: Aniruddh25 <3513779+Aniruddh25@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Switch to Unauthenticated as default provider in config
Set Unauthenticated as the authentication provider in the default Docker image config
Mar 13, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Docker image’s shipped quick-starter configuration (dab-config.json) to align with the newer default authentication provider behavior by using Unauthenticated instead of the legacy Simulator provider.
Changes:
- Switch
runtime.host.authentication.providerfromSimulatortoUnauthenticatedin the rootdab-config.json.
souvikghosh04
approved these changes
Mar 13, 2026
Contributor
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
Contributor
|
/azp run |
|
Azure Pipelines successfully started running 6 pipeline(s). |
Aniruddh25
approved these changes
Mar 13, 2026
anushakolan
approved these changes
Mar 13, 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.
Why make this change?
PR #3074 introduced
Unauthenticatedas the new default authentication provider. Thedab-config.jsonshipped in the Docker image (quick-starter) was still referencing the oldSimulatorprovider and needs to be aligned.What is this change?
dab-config.json(root-level, copied into the Docker image viaCOPY dab-config.json /App/dab-config.json) to useUnauthenticatedinstead ofSimulatoras the authentication provider."authentication": { - "provider": "Simulator" + "provider": "Unauthenticated" }Unauthenticatedtreats all requests as anonymous without simulating auth claims, which is the correct default for a quick-starter config.Simulatorwas a development-only mode that would inject fake authenticated identities.How was this tested?
The Docker image can start up with the updated default config values in
dab-config.json.Sample Request(s)
No API behavior change — this only affects the default provider in the shipped config. Users connecting to the Docker image will have all requests processed as the
anonymousrole by default.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.