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.
83 lines
1.9 KiB
HCL
83 lines
1.9 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 VS Code Wbe on."
|
|
default = 13338
|
|
}
|
|
|
|
variable "folder" {
|
|
type = string
|
|
description = "The folder to open in VS Code Web."
|
|
default = ""
|
|
}
|
|
|
|
variable "log_path" {
|
|
type = string
|
|
description = "The path to log."
|
|
default = "/tmp/vscode-web.log"
|
|
}
|
|
|
|
variable "accept_license" {
|
|
type = bool
|
|
description = "Accept the VS Code license. https://code.visualstudio.com/license"
|
|
default = false
|
|
validation {
|
|
condition = var.accept_license == true
|
|
error_message = "You must accept the VS Code license agreement by setting accept_license=true."
|
|
}
|
|
}
|
|
|
|
variable "version" {
|
|
type = string
|
|
description = "The version of VS Code to install."
|
|
default = "latest"
|
|
# add a validation block to validate the version is greater than or equal to 1.82.0
|
|
validation {
|
|
condition = var.version >= "1.82.0"
|
|
error_message = "Version must be greater than or equal to 1.82.0"
|
|
}
|
|
}
|
|
|
|
resource "coder_script" "vscode-web" {
|
|
agent_id = var.agent_id
|
|
display_name = "VS Code Web"
|
|
icon = "/icon/code.svg"
|
|
script = templatefile("${path.module}/run.sh", {
|
|
PORT : var.port,
|
|
LOG_PATH : var.log_path,
|
|
VERSION : var.version,
|
|
})
|
|
run_on_start = true
|
|
}
|
|
|
|
resource "coder_app" "vscode-web" {
|
|
agent_id = var.agent_id
|
|
slug = "vscode-web"
|
|
display_name = "VS Code Web"
|
|
url = "http://localhost:${var.port}/?folder=${var.folder}"
|
|
icon = "/icon/code.svg"
|
|
subdomain = true
|
|
share = "owner"
|
|
|
|
healthcheck {
|
|
url = "http://localhost:${var.port}/healthz"
|
|
interval = 5
|
|
threshold = 6
|
|
}
|
|
}
|