-
Notifications
You must be signed in to change notification settings - Fork 24
OIDC datagatherer #758
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
base: master
Are you sure you want to change the base?
OIDC datagatherer #758
Conversation
539b172 to
b4e4169
Compare
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
b4e4169 to
5fa2201
Compare
SgtCoDFish
left a comment
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.
Few minor bits!
| func (g *DataGathererOIDC) Run(ctx context.Context) error { | ||
| return nil | ||
| } |
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.
suggestion: probably worth having a comment here explaining why it does nothing!
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.
Am I missing the change here? It still seems like there's no comment?
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.
I added var _ datagatherer.DataGatherer = &DataGathererOIDC{} to make it clear that this struct is implementing an interface.
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
75bf546 to
2a994be
Compare
Adds datagatherer that fetches the
/.well-known/openid-configurationand/openid/v1/jwksendpoints.Adding this gathered data to the disco upload is for a follow-up PR.