From a1c41758959c62494c513ebde797ced7a7f7d3f3 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 21:52:12 +0000 Subject: [PATCH] added coder param defaults --- git-config/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-config/main.tf b/git-config/main.tf index 993d685..7482a42 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -29,6 +29,7 @@ variable "default_user_email" { data "coder_parameter" "user_email" { name = "user_email" type = "string" + default = "" description = "Email to store in git-config for this workspace. Leave empty to populate with workspace owner email." display_name = "Git config user.email" mutable = false @@ -37,6 +38,7 @@ data "coder_parameter" "user_email" { data "coder_parameter" "username" { name = "username" type = "string" + default = "" description = "Username to store in git-config for this workspace. Leave empty to populate with workspace owner name." display_name = "Git config user.name" mutable = false