Skip to content
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

How can I set OIDC User or Group? #15

Open
kyunse opened this issue Oct 14, 2020 · 4 comments
Open

How can I set OIDC User or Group? #15

kyunse opened this issue Oct 14, 2020 · 4 comments

Comments

@kyunse
Copy link

kyunse commented Oct 14, 2020

I set github outh but our team need to change it to keycloak using oidc.

below team resource. guide me to set owners arg. please...

resource "concourse_team" "my_team" {

  team_name = "myteam"
  owners = [

  ]
}
@kyunse kyunse changed the title How can I set OIDC User or Group How can I set OIDC User or Group? Oct 14, 2020
@yashbhutwala
Copy link

+1 is this possible?

@yashbhutwala
Copy link

I would like to do this for generic oauth: https://concourse-ci.org/generic-oauth.html. Here is how I manage it currently without terraform...

roles:
- name: owner
  oauth:
    users:
    - USER1

@risicle
Copy link
Member

risicle commented Feb 23, 2021

Afraid we currently don't support that because we don't ourselves use that feature. Patches welcome with the caveat that they would have to come with clear tests, because, as I say, we don't use that feature and wouldn't know if it actually works or got broken.

@bartlett-ops
Copy link

It is possible to configure OIDC like so:

resource "concourse_team" "platform" {
  team_name = "platform"
  owners = [ 
    "user:local:root",
  ]
  members = [ 
    "group:oidc:[email protected]",
  ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants