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.
39 lines
891 B
HCL
39 lines
891 B
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 "path" {
|
|
type = string
|
|
description = "The path to a script that will be ran on start enabling a user to personalize their workspace."
|
|
default = "~/personalize"
|
|
}
|
|
|
|
variable "log_path" {
|
|
type = string
|
|
description = "The path to a log file that will contain the output of the personalize script."
|
|
default = "~/personalize.log"
|
|
}
|
|
|
|
resource "coder_script" "personalize" {
|
|
agent_id = var.agent_id
|
|
script = templatefile("${path.module}/run.sh", {
|
|
PERSONALIZE_PATH : var.path,
|
|
})
|
|
display_name = "Personalize"
|
|
icon = "/icon/personalize.svg"
|
|
log_path = var.log_path
|
|
run_on_start = true
|
|
}
|