Guard Helm connector env vars on clientId / clientSecret → Address review feedback on access-review drivers

- Guard Helm connector env vars on clientId / clientSecret
- Decode Vercel pagination cursor as *int64
- Drop Monday probe URL — no valid GET endpoint
- Address review feedback on access-review drivers

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-05-17 17:22:51 +02:00
parent 995769c4b6
commit 7d0dec82f6
10 changed files with 45 additions and 40 deletions

View File

@@ -1000,7 +1000,10 @@ func (r *mondayNameResolver) ResolveInstanceName(ctx context.Context) (string, e
}
if len(resp.Errors) > 0 {
return "", fmt.Errorf("monday graphql error: %s", resp.Errors[0].Message)
// Provider-supplied messages may carry tenant identifiers or
// query fragments — never embed them. Driver scrubs the same
// field; keep both call sites aligned.
return "", fmt.Errorf("cannot fetch monday account: graphql error")
}
return resp.Data.Account.Name, nil