removed logic to test params

This commit is contained in:
Stephen Kirby
2023-10-05 21:15:10 +00:00
parent dad94ec735
commit 04000b43ca
2 changed files with 6 additions and 11 deletions

View File

@@ -18,7 +18,7 @@ variable "agent_id" {
variable "db_path" {
type = string
description = "The path to the filebrowser database."
default = "~/filebrowser.db"
default = ""
}
variable "log_path" {
@@ -48,7 +48,7 @@ resource "coder_script" "filebrowser" {
PORT : var.port,
FOLDER : var.folder,
LOG_PATH : var.log_path,
DB_PATH : var.db_path,
DB_PATH : var.db_path
})
run_on_start = true
}