Files
coder/dev-java/parameters.tf
T

22 lines
511 B
Terraform

data "coder_parameter" "gpu" {
name = "gpu"
display_name = "GPU Assignment"
description = "Which GPU(s) to attach. GPU 1 is shared with Ollama and Immich, so GPU 0 is the default to avoid contention."
default = "0"
mutable = true
icon = "/icon/memory.svg"
option {
name = "GPU 0 - RTX 3060"
value = "0"
}
option {
name = "GPU 1 - GTX 1660 (shared with Ollama and Immich)"
value = "1"
}
option {
name = "Both GPUs"
value = "all"
}
}