Skip to content
Snippets Groups Projects
Verified Commit 6bad158d authored by Levente Polyak's avatar Levente Polyak :rocket:
Browse files

keycloak: do not allow full scope for openid gitlab client

We do not want full scope to be allowed for the gitlab openid client. In
fact we already have it disabled, however the latest provider seems to
have changed something which makes terraform to have the desire to
change this to true. Set it explicitly to false to avoid changing
behavior.
parent a5fbc14b
No related branches found
No related tags found
1 merge request!53keycloak: do not allow full scope for openid gitlab client
Pipeline #1108 failed
......@@ -165,6 +165,7 @@ resource "keycloak_openid_client" "openid_gitlab" {
access_type = "PUBLIC"
standard_flow_enabled = true
full_scope_allowed = false
valid_redirect_uris = [
"https://gitlab.archlinux.org"
]
......
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