From 0de6bb9d4c9232249056012f44b69426799076df Mon Sep 17 00:00:00 2001 From: Jeremias Weber Date: Wed, 29 Jan 2025 17:22:30 +0100 Subject: [PATCH] #105 Document variables --- terraform/keycloak-module/variables.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform/keycloak-module/variables.tf b/terraform/keycloak-module/variables.tf index f242cc4..2b6b994 100644 --- a/terraform/keycloak-module/variables.tf +++ b/terraform/keycloak-module/variables.tf @@ -24,11 +24,13 @@ variable "keycloak_service_account_client_secret" { } variable "ces_fqdn" { + description = "FQDN or IP address of the CES" type = string nullable = false } variable "keycloak_client_scopes" { + description = "OIDC scopes to add as default scopes in the keycloak client" type = list(string) default = ["acr", "email", "groups", "profile", "roles", "web-origins"] } \ No newline at end of file