From 54cee4998d0ae827aae83170cd906c26596cfe61 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 21:44:43 +0000 Subject: [PATCH] types in quotes --- 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 dd8bd66..9588f1a 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -27,14 +27,14 @@ variable "default_user_email" { data "coder_parameter" "user_email" { - type = string + 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" mutable = false } data "coder_parameter" "username" { - type = string + 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" mutable = false