From 511a62ad8f70b1afc0f51d4f4a12a8fe904f7d6e Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Fri, 15 Sep 2023 12:00:25 -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 7826151..acd2ef9 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 = "" }