Merge pull request #29673 from awanlin/azure/add-missing-config

integration - Added missing `organizations` property to `azure` section
This commit is contained in:
Patrik Oldsberg
2025-04-20 09:06:27 +02:00
committed by GitHub
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/integration': patch
---
Added missing `organizations` property to `azure` section in `config.d.ts` file
+2 -1
View File
@@ -51,12 +51,13 @@ export interface Config {
/**
* The credentials to use for requests. If multiple credentials are specified the first one that matches the organization is used.
* If not organization matches the first credential without an organization is used.
* If no organization matches the first credential without an organization is used.
*
* If no credentials are specified at all, either a default credential (for Azure DevOps) or anonymous access (for Azure DevOps Server) is used.
* @deepVisibility secret
*/
credentials?: {
organizations?: string[];
clientId?: string;
clientSecret?: string;
tenantId?: string;