From 7e5b1388276cbaef7d0032f9c5455264741f7ec0 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 21:45:51 +0000 Subject: [PATCH] added parameter names --- git-config/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-config/main.tf b/git-config/main.tf index 9588f1a..60fced3 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -27,6 +27,7 @@ variable "default_user_email" { data "coder_parameter" "user_email" { + name = "user_email" type = "string" description = "Email to store in git-config for this workspace. Leave empty to populate with workspace owner email." display_name = "Git config user.email" @@ -34,6 +35,7 @@ data "coder_parameter" "user_email" { } data "coder_parameter" "username" { + name = "username" type = "string" description = "Username to store in git-config for this workspace. Leave empty to populate with workspace owner name." display_name = "Git config user.name"