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.
77 lines
1.6 KiB
HCL
77 lines
1.6 KiB
HCL
terraform {
|
|
required_version = ">= 1.0"
|
|
|
|
required_providers {
|
|
coder = {
|
|
source = "coder/coder"
|
|
version = ">= 0.12"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "agent_id" {
|
|
type = string
|
|
description = "The ID of a Coder agent."
|
|
}
|
|
|
|
variable "port" {
|
|
type = number
|
|
description = "The port to run KasmVNC on."
|
|
default = 8443
|
|
}
|
|
|
|
variable "desktop_environment" {
|
|
type = string
|
|
description = "The desktop environment to for KasmVNC (xfce, lxde, mate, etc)."
|
|
default = "lxde"
|
|
}
|
|
|
|
variable "custom_version" {
|
|
type = string
|
|
description = "Version of KasmVNC to install."
|
|
default = "1.2.0"
|
|
}
|
|
|
|
variable "locale" {
|
|
type = string
|
|
description = "Locale to use for KasmVNC."
|
|
default = "en_US.UTF-8"
|
|
}
|
|
|
|
variable "timezone" {
|
|
type = string
|
|
description = "Timezone to use for KasmVNC."
|
|
default = "Etc/UTC"
|
|
}
|
|
|
|
variable "log_path" {
|
|
type = string
|
|
description = "Path to store KasmVNC logs."
|
|
default = "~/.kasmvnc/kasmvnc.log"
|
|
}
|
|
|
|
resource "coder_script" "kasm_vnc" {
|
|
agent_id = var.agent_id
|
|
display_name = "KasmVNC"
|
|
icon = "/icon/kasmvnc.svg"
|
|
script = templatefile("${path.module}/run.sh", {
|
|
PORT : var.port,
|
|
DESKTOP_ENVIRONMENT : var.desktop_environment,
|
|
VERSION : var.custom_version,
|
|
LOG_PATH : var.log_path,
|
|
LOCALE : var.locale,
|
|
TIMEZONE : var.timezone
|
|
})
|
|
run_on_start = true
|
|
}
|
|
|
|
resource "coder_app" "kasm_vnc" {
|
|
agent_id = var.agent_id
|
|
slug = "kasm-vnc"
|
|
display_name = "kasmVNC"
|
|
url = "http://localhost:${var.port}"
|
|
icon = "/icon/kasmvnc.svg"
|
|
subdomain = false
|
|
share = "owner"
|
|
}
|