From eb64f0f438fa5db8b1f8f9fe149d565d36b17af4 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Wed, 27 Sep 2023 20:54:40 +0000 Subject: [PATCH] changed workspace id in params --- 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 27f7d69..7c8335d 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -32,7 +32,7 @@ data "coder_parameter" "user_email" { count = var.allow_email_change ? 1 : 0 name = "user_email" type = "string" - default = data.coder_workspace.me.owner_email + default = data.coder_workspace.git_config.owner_email description = "Git user.email to be used for commits" display_name = "Git config user.email" mutable = true @@ -42,7 +42,7 @@ data "coder_parameter" "username" { count = var.allow_username_change ? 1 : 0 name = "username" type = "string" - default = data.coder_workspace.me.owner + default = data.coder_workspace.git_config.owner description = "Git user.name to be used for commits" display_name = "Git config user.name" mutable = true