diff --git a/filebrowser/main.tf b/filebrowser/main.tf index 37c7aac..b730160 100644 --- a/filebrowser/main.tf +++ b/filebrowser/main.tf @@ -15,7 +15,7 @@ variable "agent_id" { description = "The ID of a Coder agent." } -variable "db_path" { +variable "database_path" { type = string description = "The path to the filebrowser database." default = "filebrowser.db" @@ -52,7 +52,7 @@ resource "coder_script" "filebrowser" { PORT : var.port, FOLDER : var.folder, LOG_PATH : var.log_path, - DB_PATH : var.db_path + DB_PATH : var.database_path }) run_on_start = true }