diff --git a/kasmvnc/main.tf b/kasmvnc/main.tf index 4b36eb2..83b55a3 100644 --- a/kasmvnc/main.tf +++ b/kasmvnc/main.tf @@ -30,7 +30,7 @@ variable "desktop_environment" { type = string description = "Specifies the desktop environment of the workspace. This should be pre-installed on the workspace." validation { - condition = contains(["xfce", "kde", "gnome", "lxde", "lxqt", "xfce"], var.desktop_environment) + condition = contains(["xfce", "kde", "gnome", "lxde", "lxqt"], var.desktop_environment) error_message = "Invalid desktop environment. Please specify a valid desktop environment." } }