Skip to content
Snippets Groups Projects
Commit 22976e7f authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

Merge branch 'wiki-maintainers' into 'master'

Create a group for Wiki Maintainers in Keycloak

See merge request !496
parents 947b5c32 b75f2a56
No related branches found
No related tags found
Loading
Pipeline #12695 passed
...@@ -308,6 +308,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "gitlab_saml_username" { ...@@ -308,6 +308,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "gitlab_saml_username" {
// |- Trusted Users // |- Trusted Users
// |- Wiki // |- Wiki
// | |- Admins // | |- Admins
// | |- Maintainers
// |- Forum // |- Forum
// | |- Admins // | |- Admins
// | |- Mods // | |- Mods
...@@ -338,7 +339,7 @@ resource "keycloak_group" "staff_groups" { ...@@ -338,7 +339,7 @@ resource "keycloak_group" "staff_groups" {
} }
resource "keycloak_group" "staff_wiki_groups" { resource "keycloak_group" "staff_wiki_groups" {
for_each = toset(["Admins"]) for_each = toset(["Admins", "Maintainers"])
realm_id = "archlinux" realm_id = "archlinux"
parent_id = keycloak_group.staff_groups["Wiki"].id parent_id = keycloak_group.staff_groups["Wiki"].id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment