Files
terraform/keycloak-tf-projekt/variables.tf
T

19 lines
465 B
Terraform

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)
}