From e4be50ce689854cc7ad5b98d2444719fb3276be7 Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Fri, 15 Sep 2023 12:01:24 -0400 Subject: [PATCH] Ensure all input variables have types specified. --- variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/variables.tf b/variables.tf index b4e6e32..57f3b02 100644 --- a/variables.tf +++ b/variables.tf @@ -1,5 +1,6 @@ variable "profile" { description = "AWS_PROFILE to use to apply the terraform script." + type = string default = "" }