terraform-provider-keycloak
terraform-provider-keycloak copied to clipboard
JWKS URL ON as a part of client creation
I am trying to deploy a Client in a realm via terraform modules. While this is generally successful, I am still trying to figure how do I toggle the JWKS URL setting to ON as seen in the below snip. The defaults that are used in the client creation do not turn the JWKS URL setting to ON and I do not see any options in the terraform values for the client module.
My config:
resource "keycloak_openid_client" "kube" {
realm_id = local.realm_id
client_id = "kube"
name = "kube"
enabled = true
access_type = "CONFIDENTIAL"
client_secret = "kube-client-secret"
standard_flow_enabled = true
implicit_flow_enabled = false
direct_access_grants_enabled = true
service_accounts_enabled = true
valid_redirect_uris = [
"https://test.oidc.thecloudgarage.com:10443/*",
]
}
thanks
Ambar.