From cbaabe16af9fefb4786ed3b64787b81b04c51600 Mon Sep 17 00:00:00 2001 From: Brian Pham Date: Thu, 11 Jan 2024 16:38:49 +0000 Subject: [PATCH] fix(variables): fix invalid validation error for schedule_state * Fix invalid validation error when running terraform init by updating error message to be written in english prose --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index dba3efb..3780b5d 100644 --- a/variables.tf +++ b/variables.tf @@ -67,7 +67,7 @@ variable "schedule_state" { default = "DISABLED" validation { condition = var.schedule_state == "ENABLED" || var.schedule_state == "DISABLED" - error_message = "Schedule state must be 'ENABLED' or 'DISABLED'" + error_message = "Schedule state must be 'ENABLED' or 'DISABLED'." } }