-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(oauth2): add support for external account workforce identity #14800
feat(oauth2): add support for external account workforce identity #14800
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #14800 +/- ##
=======================================
Coverage 93.27% 93.28%
=======================================
Files 2319 2319
Lines 208231 208290 +59
=======================================
+ Hits 194230 194293 +63
+ Misses 14001 13997 -4 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there an integration test for workforce identity? Like something that would fail before this PR and succeed after it?
There is a case under |
External account has two types of identities:
Workload Identity - 3rd party identities that represent a workload, the configs for this are all handled at a project level
Workforce Identity - 3rd party identities that represent a user, configs for this are handled at the org level
We already support Workload Identity. To support Workforce Identity, I added options
userProject
in the request header.This change is