From f234fc4dc673364d125afdddd3a0ef6ec4037de0 Mon Sep 17 00:00:00 2001 From: Seppdo <85109829+Seppdo@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:50:27 +0200 Subject: [PATCH] Set default agent_name to "main" --- filebrowser/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filebrowser/main.tf b/filebrowser/main.tf index 8aafd7a..b6d4ff5 100644 --- a/filebrowser/main.tf +++ b/filebrowser/main.tf @@ -20,7 +20,7 @@ data "coder_workspace_owner" "me" {} variable "agent_name" { type = string - default = "" + default = "main" description = "The name of the main deployment. (Used to build the subpath for coder_app.)" }