Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sdk/identity/azure-identity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

### Bugs Fixed

- Fixed IMDS token requests for managed identities, which were broken by an invalid URL path in 1.12.0-beta.1.

### Other Changes

## 1.13.0 (2025-08-05)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ std::unique_ptr<ManagedIdentitySource> ImdsManagedIdentitySource::Create(

imdsUrl = Core::Url{imdsEndpointEnvVarValue};
}
imdsUrl.SetPath("/metadata/identity/oauth2/token");
imdsUrl.SetPath("metadata/identity/oauth2/token");

return std::unique_ptr<ManagedIdentitySource>(
new ImdsManagedIdentitySource(clientId, objectId, resourceId, imdsUrl, options));
Expand Down