Add Qovery access review driver support

Register Qovery as a connector provider and add a new access review
driver that fetches organization members from the Qovery API.

Extend API key connection handling with a configurable Authorization
token scheme so Qovery can use "Token" while existing providers
continue to default to Bearer.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>

Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
This commit is contained in:
Cursor Agent
2026-05-29 03:44:39 +00:00
committed by Aurélien Sibiril
parent 9e5d0d1c00
commit 7a43acd3c2
17 changed files with 665 additions and 1 deletions

View File

@@ -151,6 +151,9 @@ function mapAPIKeyExtraSettingToField(
case "BETTER_STACK":
if (settingKey === "teamName") return "betterStackTeamName";
break;
case "QOVERY":
if (settingKey === "organizationId") return "qoveryOrganizationId";
break;
}
return null;
}