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.
25 lines
747 B
Markdown
25 lines
747 B
Markdown
---
|
|
display_name: KasmVNC
|
|
description: A modern open source VNC server
|
|
icon: ../.icons/kasmvnc.svg
|
|
maintainer_github: coder
|
|
verified: true
|
|
tags: [helper, vnc, desktop]
|
|
---
|
|
|
|
# KasmVNC
|
|
|
|
Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and create an app to access it via the dashboard.
|
|
|
|
```tf
|
|
module "kasmvnc" {
|
|
count = data.coder_workspace.me.start_count
|
|
source = "registry.coder.com/modules/kasmvnc/coder"
|
|
version = "1.0.23"
|
|
agent_id = coder_agent.example.id
|
|
desktop_environment = "xfce"
|
|
}
|
|
```
|
|
|
|
> **Note:** This module only works on workspaces with a pre-installed desktop environment. As an example base image you can use `codercom/enterprise-desktop` image.
|