You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/kasmvnc
Muhammad Atif Ali 3333d3a590 improve compatibility and cleanup 1 year ago
..
README.md rename version to kasm_version 1 year ago
main.tf rename version to kasm_version 1 year ago
run.sh improve compatibility and cleanup 1 year ago

README.md

display_name description icon maintainer_github verified tags
KasmVNC A modern open source VNC server ../.icons/kasmvnc.svg coder true
helper
vnc
desktop

KasmVNC

Automatically install KasmVNC in a workspace, and create an app to access it via the dashboard. Add latest version of KasmVNC with lxde desktop environment:

module "kasmvnc" {
  source   = "registry.coder.com/modules/kasmvnc/coder"
  version  = "1.0.15"
  agent_id = coder_agent.example.id
}

Note: This module only works on debian-based workspaces.

Examples

  1. Add specific version of KasmVNC with mate desktop environment and custom port:

    module "kasmvnc" {
      source              = "registry.coder.com/modules/kasmvnc/coder"
      agent_id            = coder_agent.example.id
      version             = "1.0.15"
      kasm_version        = "1.3.1"
      desktop_environment = "mate"
      port                = 6080
    }