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 01d21df98a fixup! 2 years ago
..
README.md add note 2 years ago
main.tf use environment variables to set Timezone 2 years ago
run.sh fixup! 2 years 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
web

KasmVNC

Automatically install KasmVNC in a workspace, and create an app to access it via the dashboard.

KasmVNC

Examples

  1. Add latest version of KasmVNC with lxde desktop environment:

    module "kasmvnc" {
      source   = "https://registry.coder.com/modules/kasmvnc"
      agent_id = coder_agent.example.id
    }
    
    
  2. Add specific version of KasmVNC with mate desktop environment and custom port:

    module "kasmvnc" {
      source              = "https://registry.coder.com/modules/kasmvnc"
      agent_id            = coder_agent.example.id
      custom_version      = "1.0.0"
      desktop_environment = "mate"
      port                = 6080
    }
    
  3. Use custom timezone and locale:

    module "kasmvnc" {
      source              = "https://registry.coder.com/modules/kasmvnc"
      agent_id            = coder_agent.example.id
      custom_version      = "1.0.0"
      desktop_environment = "mate"
      port                = 6080
      locale              = "en_US.UTF-8"
      timezone            = "America/Los_Angeles"
    }
    

    Note: It is recommended to pre-install a desktop environment in your Dockerfile/VM image to speed up the startup time of your workspace.