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:
committed by
Aurélien Sibiril
parent
9e5d0d1c00
commit
7a43acd3c2
@@ -62,6 +62,7 @@ const (
|
||||
ConnectorProviderDatadog ConnectorProvider = "DATADOG"
|
||||
ConnectorProviderOkta ConnectorProvider = "OKTA"
|
||||
ConnectorProviderZendesk ConnectorProvider = "ZENDESK"
|
||||
ConnectorProviderQovery ConnectorProvider = "QOVERY"
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -111,6 +112,7 @@ func ConnectorProviders() []ConnectorProvider {
|
||||
ConnectorProviderDatadog,
|
||||
ConnectorProviderOkta,
|
||||
ConnectorProviderZendesk,
|
||||
ConnectorProviderQovery,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -155,7 +157,8 @@ func (v ConnectorProvider) IsValid() bool {
|
||||
ConnectorProviderCursor,
|
||||
ConnectorProviderDatadog,
|
||||
ConnectorProviderOkta,
|
||||
ConnectorProviderZendesk:
|
||||
ConnectorProviderZendesk,
|
||||
ConnectorProviderQovery:
|
||||
return true
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user