From 7bef2d98423e3732c02f71dd789a327023e2dae1 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Wed, 27 Sep 2023 21:06:39 +0000 Subject: [PATCH] type typo --- 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 f4d8fc2..061b87f 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -27,12 +27,12 @@ variable "allow_email_change" { } variable "default_username_source" { - string = string + type = string description = "Default source to use for git-config user.name." } variable "default_email_source" { - string = string + type = string description = "Default source to use for git-config user.email." }