From 39d8b3b95df7b69f322302cc276fdb04fa20e47a Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 21:57:05 +0000 Subject: [PATCH] changed default flow --- git-config/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-config/main.tf b/git-config/main.tf index 7482a42..64be5c1 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -29,7 +29,7 @@ variable "default_user_email" { data "coder_parameter" "user_email" { name = "user_email" type = "string" - default = "" + default = var.default_user_email 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 @@ -38,7 +38,7 @@ data "coder_parameter" "user_email" { data "coder_parameter" "username" { name = "username" type = "string" - default = "" + default = var.default_username 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