From e9979f521661e84ee1f184297475b246f579d01c Mon Sep 17 00:00:00 2001 From: Tristan Jahnke Date: Sun, 10 May 2026 20:37:18 -0500 Subject: [PATCH] fix: annotation has to be on new line or it breaks the EOT --- docs/terraform/style-guide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/terraform/style-guide.md b/docs/terraform/style-guide.md index 0579ce1..fe90e05 100644 --- a/docs/terraform/style-guide.md +++ b/docs/terraform/style-guide.md @@ -22,7 +22,8 @@ variable "project_id" { # (1)! error_message = <<-EOT Variable `project_id` must start with a lowercase letter, be 6–30 chars, and contain only lowercase letters, digits, or hyphens (no trailing hyphen). - EOT # (6)! + EOT + # (6)! } } ```