Dateien nach "keycloak-tf-projekt" hochladen

This commit is contained in:
2025-12-08 13:56:52 +01:00
parent c6e30bf40c
commit 5a121e9572
7 changed files with 199 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
variable "keycloak_url" {
description = "Die vollständige URL zur Keycloak-Instanz (z.B. http://localhost:8080)"
type = string
}
variable "keycloak_username" {
description = "Der Benutzername des Master-Admins"
type = string
}
variable "keycloak_password" {
description = "Das Passwort des Master-Admins"
type = string
sensitive = true # 💡 Wichtig: Maskiert den Wert in der CLI-Ausgabe (plan/apply)
}